Removing the build errors and a build warning that crept in for MSVC 6.0. There...
authorJohn F. Fay <johnffay@nettally.com>
Sun, 1 Apr 2012 20:09:51 +0000 (20:09 +0000)
committerJohn F. Fay <johnffay@nettally.com>
Sun, 1 Apr 2012 20:09:51 +0000 (20:09 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1231 7f0cb862-5218-0410-a997-914c9d46530a

src/fg_geometry.c
src/fg_init.c

index eb96b92..312acfc 100644 (file)
@@ -72,7 +72,9 @@ static void fghDrawGeometryWire20(GLfloat *vertices, GLfloat *normals, GLsizei n
 {
     GLuint vbo_coords, vbo_normals;
     GLuint numVertices = numFaces * numEdgePerFace;
-    
+
+    int i;
+
     if (numVertices > 0 && attribute_v_coord != -1) {
            fghGenBuffers(1, &vbo_coords);
            fghBindBuffer(FGH_ARRAY_BUFFER, vbo_coords);
@@ -113,9 +115,6 @@ static void fghDrawGeometryWire20(GLfloat *vertices, GLfloat *normals, GLsizei n
         );
     }
 
-
-    int i;
-    
     /* Draw per face (TODO: could use glMultiDrawArrays if available) */
     for (i=0; i<numFaces; i++)
        glDrawArrays(GL_LINE_LOOP, i*numEdgePerFace, numEdgePerFace);
index 74c4649..68b69ca 100644 (file)
@@ -102,6 +102,7 @@ extern void fgPlatformInitialize( const char* displayName );
 extern void fgPlatformDeinitialiseInputDevices ( void );
 extern void fgPlatformCloseDisplay ( void );
 extern void fgPlatformDestroyContext ( SFG_PlatformDisplay pDisplay, SFG_WindowContextType MContext );
+extern void fgInitGL2();
 
 
 void fghParseCommandLineArguments ( int* pargc, char** argv, char **pDisplayName, char **pGeometry )