From tim at ngus.net Sun Oct 4 16:11:41 2015 From: tim at ngus.net (Tim Angus) Date: Sun, 04 Oct 2015 13:11:41 -0700 Subject: [quake3-commits] [ioquake/ioq3] 7e0dac: Fix check for empty rconpassword in CL_Rcon_f Message-ID: <561187fd23e5c_3f943f8fdd36129c307e@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/ioquake/ioq3 Commit: 7e0dac7517d3528eecfcf057515abc5ecac33f10 https://github.com/ioquake/ioq3/commit/7e0dac7517d3528eecfcf057515abc5ecac33f10 Author: Tim Angus Date: 2015-10-04 (Sun, 04 Oct 2015) Changed paths: M code/client/cl_main.c Log Message: ----------- Fix check for empty rconpassword in CL_Rcon_f From zturtleman at gmail.com Fri Oct 16 21:26:10 2015 From: zturtleman at gmail.com (Zack Middleton) Date: Fri, 16 Oct 2015 18:26:10 -0700 Subject: [quake3-commits] [ioquake/ioq3] 7f4b34: Remove unused define MAC_EVENT_PUMP_MSEC Message-ID: <5621a3b2ee286_59343fc98f4532b89375b@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/ioquake/ioq3 Commit: 7f4b34bf095a4e36d34cbdb2653edf11e7239325 https://github.com/ioquake/ioq3/commit/7f4b34bf095a4e36d34cbdb2653edf11e7239325 Author: Zack Middleton Date: 2015-10-04 (Sun, 04 Oct 2015) Changed paths: M code/renderergl1/tr_backend.c M code/renderergl2/tr_backend.c Log Message: ----------- Remove unused define MAC_EVENT_PUMP_MSEC Commit: fad66ae22225890dac05e742078f7cfb7e3475a0 https://github.com/ioquake/ioq3/commit/fad66ae22225890dac05e742078f7cfb7e3475a0 Author: Zack Middleton Date: 2015-10-04 (Sun, 04 Oct 2015) Changed paths: M Makefile Log Message: ----------- Maybe fix old MSYS when there is an empty for loop Based on ioquake3 svn r1485. Commit: ce35188acd270c75d766681016ae26fa030b5315 https://github.com/ioquake/ioq3/commit/ce35188acd270c75d766681016ae26fa030b5315 Author: Zack Middleton Date: 2015-10-16 (Fri, 16 Oct 2015) Changed paths: M code/renderergl1/tr_image.c Log Message: ----------- Add support for uncompressed image upload flag to OpenGL1 Commit: 8531162bd9761ce49016b3738ddf394b28f8e462 https://github.com/ioquake/ioq3/commit/8531162bd9761ce49016b3738ddf394b28f8e462 Author: Zack Middleton Date: 2015-10-16 (Fri, 16 Oct 2015) Changed paths: M code/renderergl1/tr_cmds.c M code/renderergl2/tr_cmds.c Log Message: ----------- Fix not swapping buffers because out of cmd buffer space Reserve space for end of list and swap buffer commands. These are absolutely required and cannot be dropped. Dropping swap buffer command causes screen to not update and possible crash from drawsurf buffer overflow if not enough cmd buffer space for many continous frames. Commit: e6209f3b7c008d6d6ec933788088510ad04cd2c5 https://github.com/ioquake/ioq3/commit/e6209f3b7c008d6d6ec933788088510ad04cd2c5 Author: Zack Middleton Date: 2015-10-16 (Fri, 16 Oct 2015) Changed paths: M code/renderergl1/tr_main.c M code/renderergl2/tr_main.c Log Message: ----------- Fix crash from reading past end of tr.refdef.drawSurfs The number of draw surfaces was range checked against number of surfaces for the current view but needs to check total for the frame otherwise can read past the end of the tr.refdef.drawSurfs array when there are multiple views. Compare: https://github.com/ioquake/ioq3/compare/7e0dac7517d3...e6209f3b7c00 From zturtleman at gmail.com Fri Oct 16 21:51:15 2015 From: zturtleman at gmail.com (Zack Middleton) Date: Fri, 16 Oct 2015 18:51:15 -0700 Subject: [quake3-commits] [ioquake/ioq3] 81e2b6: Fix reserved size for swap buffer command being to... Message-ID: <5621a99357c20_58e83ff8450e92a08871e@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/ioquake/ioq3 Commit: 81e2b6c0cf1bf8f7cea18035d24edb1ff8ae36ff https://github.com/ioquake/ioq3/commit/81e2b6c0cf1bf8f7cea18035d24edb1ff8ae36ff Author: Zack Middleton Date: 2015-10-16 (Fri, 16 Oct 2015) Changed paths: M code/renderergl1/tr_cmds.c M code/renderergl2/tr_cmds.c Log Message: ----------- Fix reserved size for swap buffer command being too small on x86_64 From zturtleman at gmail.com Sat Oct 17 23:00:43 2015 From: zturtleman at gmail.com (Zack Middleton) Date: Sat, 17 Oct 2015 20:00:43 -0700 Subject: [quake3-commits] [ioquake/ioq3] 41f83a: Replace 4 with sizeof( int ) in R_GetCommandBuffer... Message-ID: <56230b5b4eebc_648c3fbf9371f2b8139067@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/ioquake/ioq3 Commit: 41f83ac8b0a5e6e9b1a80be9ec6f8c143944201f https://github.com/ioquake/ioq3/commit/41f83ac8b0a5e6e9b1a80be9ec6f8c143944201f Author: Zack Middleton Date: 2015-10-17 (Sat, 17 Oct 2015) Changed paths: M code/renderergl1/tr_cmds.c M code/renderergl2/tr_cmds.c Log Message: ----------- Replace 4 with sizeof( int ) in R_GetCommandBufferReserved