]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
added glFinish() call to loading screen (which uses front buffer rendering) to make...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 19 Mar 2007 17:53:06 +0000 (17:53 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 19 Mar 2007 17:53:06 +0000 (17:53 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7000 d7cf8633-e32d-0410-b094-e92efae38249

cl_screen.c

index 60d14e39586cb76d6613db4aafd93fd1fcbb66db..c7a4c82fb74db27f7765e9704b1e52ccdcc519b8 100644 (file)
@@ -1677,6 +1677,8 @@ void SCR_UpdateLoadingScreen (qboolean clear)
        // refresh
        // not necessary when rendering to GL_FRONT buffers
        //VID_Finish(false);
+       // however this IS necessary on Windows Vista
+       qglFinish();
 }
 
 void CL_UpdateScreen(void)