Finished off most of the issues with freeglut_structure.c, from a stylistic
[freeglut] / src / freeglut_window.c
index 21b3006..bf9d58f 100644 (file)
@@ -306,6 +306,8 @@ GLboolean fgSetupPixelFormat( SFG_Window* window, GLboolean checkOnly, unsigned
 void fgSetWindow ( SFG_Window *window )
 {
 #if TARGET_HOST_UNIX_X11
+  if ( window )
+  {
     /*
         * Make the selected window's GLX context the current one
      */
@@ -314,7 +316,7 @@ void fgSetWindow ( SFG_Window *window )
         window->Window.Handle,
         window->Window.Context
     );
-
+  }
 #elif TARGET_HOST_WIN32
        /*
         * Release the previous' context's device context
@@ -395,6 +397,10 @@ void fgOpenWindow( SFG_Window* window, const char* title, int x, int y, int w, i
          */
         fgState.DisplayMode |= GLUT_DOUBLE ;
         window->Window.VisualInfo = fgChooseVisual();
+       /* OK, we got a double-buffered window, but we only wanted
+        * single-buffered.  Clear the double-buffer flag now.
+        */
+       fgState.DisplayMode &= ~GLUT_DOUBLE ;
       }
 
       /*
@@ -1207,15 +1213,46 @@ void FGAPIENTRY glutFullScreen( void )
 {
     freeglut_assert_ready; freeglut_assert_window;
 
-    /*
-     * Just have the window repositioned and resized
-     */
-    glutPositionWindow( 0, 0 );
+#if TARGET_HOST_UNIX_X11
+    {
+        int x, y;
+        Window w;
+
+        XMoveResizeWindow(
+            fgDisplay.Display,
+            fgStructure.Window->Window.Handle,
+            0, 0,
+            fgDisplay.ScreenWidth,
+            fgDisplay.ScreenHeight
+        );
+        XFlush( fgDisplay.Display );
 
-    glutReshapeWindow(
+        XTranslateCoordinates(
+            fgDisplay.Display,
+            fgStructure.Window->Window.Handle,
+            fgDisplay.RootWindow,
+            0, 0, &x, &y, &w
+        );
+
+        if (x || y)
+        {
+            XMoveWindow(
+                fgDisplay.Display,
+                fgStructure.Window->Window.Handle,
+                -x, -y
+            );
+            XFlush( fgDisplay.Display );
+        }
+    }
+#elif TARGET_HOST_WIN32
+    MoveWindow(
+        fgStructure.Window->Window.Handle,
+        0, 0,
         fgDisplay.ScreenWidth,
-        fgDisplay.ScreenHeight
+        fgDisplay.ScreenHeight,
+        TRUE
     );
+#endif
 }
 
 /*
@@ -1232,12 +1269,3 @@ void FGAPIENTRY glutSetWindowData(void* data)
 }
 
 /*** END OF FILE ***/
-
-
-
-
-
-
-
-
-