From 36ce5ae052dcaa3bda8be2192c1546b78b943f69 Mon Sep 17 00:00:00 2001 From: tomaz Date: Sat, 18 Dec 2004 20:18:27 +0000 Subject: [PATCH] Disabled vsync when doing a timedemo. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4856 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_demo.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/cl_demo.c b/cl_demo.c index 2b7f060b..01310b58 100644 --- a/cl_demo.c +++ b/cl_demo.c @@ -20,6 +20,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "quakedef.h" +int old_vsync = 0; + void CL_FinishTimeDemo (void); /* @@ -381,6 +383,11 @@ void CL_FinishTimeDemo (void) // LordHavoc: timedemo now prints out 7 digits of fraction, and min/avg/max Con_Printf("%i frames %5.7f seconds %5.7f fps\nmin/avg/max: %5.7f/%5.7f/%5.7f\n", frames, time, fpsavg, fpsmin, fpsavg, fpsmax); Log_Printf("benchmark.log", "date %s | enginedate %s | demo %s | commandline %s | result %i frames %5.7f seconds %5.7f fps min/avg/max: %5.7f/%5.7f/%5.7f\n", Sys_TimeString("%Y-%m-%d %H:%M:%S"), buildstring, cls.demoname, cmdline.string, frames, time, fpsavg, fpsmin, fpsavg, fpsmax); + if (gl_videosyncavailable) + { + Cvar_SetValueQuick (&vid_vsync, old_vsync); + qwglSwapIntervalEXT (old_vsync); + } if (COM_CheckParm("-benchmark")) Host_Quit_f(); } @@ -403,6 +410,13 @@ void CL_TimeDemo_f (void) return; } + if (gl_videosyncavailable) + { + old_vsync = vid_vsync.integer; + Cvar_SetValueQuick (&vid_vsync, 0); + qwglSwapIntervalEXT (0); + } + CL_PlayDemo_f (); // cls.td_starttime will be grabbed at the second frame of the demo, so @@ -416,6 +430,6 @@ void CL_TimeDemo_f (void) cls.timedemo = true; // get first message this frame - cls.td_lastframe = -1; + cls.td_lastframe = -1; } -- 2.39.2