-sync command line option now causes X server to operate in synchronized/blocking...
authorDiederick Niehorster <dcnieho@gmail.com>
Thu, 23 Jan 2014 02:28:02 +0000 (02:28 +0000)
committerDiederick Niehorster <dcnieho@gmail.com>
Thu, 23 Jan 2014 02:28:02 +0000 (02:28 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1643 7f0cb862-5218-0410-a997-914c9d46530a

src/x11/fg_init_x11.c

index 52c5d88..3adf4e4 100644 (file)
@@ -176,6 +176,9 @@ void fgPlatformInitialize( const char* displayName )
     if( fgDisplay.pDisplay.Display == NULL )
         fgError( "failed to open display '%s'", XDisplayName( displayName ) );
 
+    if ( fgState.XSyncSwitch )
+        XSynchronize(fgDisplay.pDisplay.Display, True);
+
 #ifdef EGL_VERSION_1_0
     fghPlatformInitializeEGL();
 #else