Removing a bunch of "static" declarations from the "fgPlatform" function definitions...
authorJohn F. Fay <johnffay@nettally.com>
Tue, 24 Jan 2012 03:48:12 +0000 (03:48 +0000)
committerJohn F. Fay <johnffay@nettally.com>
Tue, 24 Jan 2012 03:48:12 +0000 (03:48 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1007 7f0cb862-5218-0410-a997-914c9d46530a

src/Common/freeglut_cursor.c
src/Common/freeglut_ext.c
src/Common/freeglut_gamemode.c
src/Common/freeglut_init.c
src/Common/freeglut_input_devices.c
src/Common/freeglut_main.c
src/Common/freeglut_menu.c
src/Common/freeglut_state.c

index 31af784..ca87127 100644 (file)
@@ -104,7 +104,7 @@ static cursorCacheEntry cursorCache[] = {
     { XC_bottom_left_corner,  None }  /* GLUT_CURSOR_BOTTOM_LEFT_CORNER */\r
 };\r
 \r
-static void fgPlatformSetCursor ( SFG_Window *window, int cursorID )\r
+void fgPlatformSetCursor ( SFG_Window *window, int cursorID )\r
 {\r
     Cursor cursor;\r
     /*\r
@@ -150,7 +150,7 @@ static void fgPlatformSetCursor ( SFG_Window *window, int cursorID )
 }\r
 \r
 \r
-static void fgPlatformWarpPointer ( int x, int y )\r
+void fgPlatformWarpPointer ( int x, int y )\r
 {\r
     XWarpPointer(\r
         fgDisplay.Display,\r
index 598edb6..49ff88b 100644 (file)
@@ -223,7 +223,7 @@ static GLUTproc fghGetGLUTProcAddress( const char* procName )
 }\r
 \r
 \r
-static GLUTproc fgPlatformGlutGetProcAddress( const char* procName )\r
+GLUTproc fgPlatformGlutGetProcAddress( const char* procName )\r
 {\r
     return NULL;\r
 }\r
index d2bbe9a..98aa0b6 100644 (file)
@@ -163,7 +163,7 @@ static int xrandr_resize(int xsz, int ysz, int rate, int just_checking)
  * Remembers the current visual settings, so that\r
  * we can change them and restore later...\r
  */\r
-static void fgPlatformRememberState( void )\r
+void fgPlatformRememberState( void )\r
 {\r
     int event_base, error_base;\r
 \r
@@ -248,7 +248,7 @@ static void fgPlatformRememberState( void )
 /*\r
  * Restores the previously remembered visual settings\r
  */\r
-static void fgPlatformRestoreState( void )\r
+void fgPlatformRestoreState( void )\r
 {\r
     /* Restore the remembered pointer position: */\r
     XWarpPointer(\r
@@ -398,7 +398,7 @@ static int fghCheckDisplayModes( GLboolean exactMatch, int displayModesCount, XF
 /*\r
  * Changes the current display mode to match user's settings\r
  */\r
-static GLboolean fgPlatformChangeDisplayMode( GLboolean haveToTest )\r
+GLboolean fgPlatformChangeDisplayMode( GLboolean haveToTest )\r
 {\r
     GLboolean success = GL_FALSE;\r
     /* first try to use XRandR, then fallback to XF86VidMode */\r
index 7f98f47..eab4ac6 100644 (file)
@@ -246,7 +246,7 @@ int fgHintPresent(Window window, Atom property, Atom hint)
 /*\r
  * A call to this function should initialize all the display stuff...\r
  */\r
-static void fgPlatformInitialize( const char* displayName )\r
+void fgPlatformInitialize( const char* displayName )\r
 {\r
     fgDisplay.Display = XOpenDisplay( displayName );\r
 \r
@@ -437,7 +437,7 @@ void fghCloseInputDevices ( void )
 \r
 \r
 #if TARGET_HOST_POSIX_X11\r
-static void fgPlatformDeinitialiseInputDevices ( void )\r
+void fgPlatformDeinitialiseInputDevices ( void )\r
 {\r
        fghCloseInputDevices ();\r
 \r
@@ -446,7 +446,7 @@ static void fgPlatformDeinitialiseInputDevices ( void )
 }\r
 \r
 \r
-static void fgPlatformCloseDisplay ( void )\r
+void fgPlatformCloseDisplay ( void )\r
 {\r
     /*\r
      * Make sure all X-client data we have created will be destroyed on\r
index a1780d4..bfb6c8c 100644 (file)
@@ -128,7 +128,7 @@ int fgInputDeviceDetect( void )
  * Try initializing the input device(s)\r
  */\r
 #if TARGET_HOST_POSIX_X11\r
-static void fgPlatformRegisterDialDevice ( const char *dial_device )\r
+void fgPlatformRegisterDialDevice ( const char *dial_device )\r
 {\r
 }\r
 #endif\r
index b1654a5..f53f8fa 100644 (file)
@@ -96,7 +96,7 @@ extern void fgPlatformMainLoopPreliminaryWork ( void );
  * match the new window size.\r
  */\r
 #if TARGET_HOST_POSIX_X11\r
-static void fgPlatformReshapeWindow ( SFG_Window *window, int width, int height )\r
+void fgPlatformReshapeWindow ( SFG_Window *window, int width, int height )\r
 {\r
     XResizeWindow( fgDisplay.Display, window->Window.Handle,\r
                    width, height );\r
@@ -170,7 +170,7 @@ void fghRedrawWindow ( SFG_Window *window )
  * A static helper function to execute display callback for a window\r
  */\r
 #if TARGET_HOST_POSIX_X11\r
-static void fgPlatformDisplayWindow ( SFG_Window *window )\r
+void fgPlatformDisplayWindow ( SFG_Window *window )\r
 {\r
         fghRedrawWindow ( window ) ;\r
 }\r
@@ -416,7 +416,7 @@ static long fghNextTimer( void )
  */\r
 \r
 #if TARGET_HOST_POSIX_X11\r
-static void fgPlatformSleepForEvents( long msec )\r
+void fgPlatformSleepForEvents( long msec )\r
 {\r
     /*\r
      * Possibly due to aggressive use of XFlush() and friends,\r
@@ -1405,7 +1405,7 @@ void fgPlatformProcessSingleEvent ( void )
 }\r
 \r
 \r
-static void fgPlatformMainLoopPreliminaryWork ( void )\r
+void fgPlatformMainLoopPreliminaryWork ( void )\r
 {\r
 }\r
 #endif\r
index 7ad06ba..45c07c4 100644 (file)
@@ -143,7 +143,7 @@ static void fghDeactivateSubMenu( SFG_MenuEntry *menuEntry )
  * Private function to get the virtual maximum screen extent\r
  */\r
 #if TARGET_HOST_POSIX_X11\r
-static GLvoid fgPlatformGetGameModeVMaxExtent( SFG_Window* window, int* x, int* y )\r
+GLvoid fgPlatformGetGameModeVMaxExtent( SFG_Window* window, int* x, int* y )\r
 {\r
     int wx, wy;\r
     Window w;\r
index f3e6e8e..434b41f 100644 (file)
@@ -73,7 +73,7 @@ static int fghGetConfig( int attribute )
   return returnValue;\r
 }\r
 \r
-static int fgPlatformGlutGet ( GLenum eWhat )\r
+int fgPlatformGlutGet ( GLenum eWhat )\r
 {\r
     int nsamples = 0;\r
 \r
@@ -233,7 +233,7 @@ static int fgPlatformGlutGet ( GLenum eWhat )
 }\r
 \r
 \r
-static int fgPlatformGlutDeviceGet ( GLenum eWhat )\r
+int fgPlatformGlutDeviceGet ( GLenum eWhat )\r
 {\r
     switch( eWhat )\r
     {\r