add glutInitWindowPosition calls
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 28 Jan 2004 10:09:59 +0000 (10:09 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 28 Jan 2004 10:09:59 +0000 (10:09 +0000)
progs/demos/spriteblast.c
progs/demos/tessdemo.c

index c604536ab38bb42b5cb6284151c7eb5a542297ea..f1eee697242b85629103b50afc5357050809fc0b 100644 (file)
@@ -463,6 +463,7 @@ main(int argc, char **argv)
       linearFiltering = 0;
     }
   }
+  glutInitWindowPosition(0, 0);
   glutInitWindowSize(600,300);
   glutCreateWindow("sprite blast");
   glutReshapeFunc(reshape);
index 66fdc6370c8d9de04f92c8b3505755b9da965e88..26403eee0a28e2053658ff7d2e38fd8091533e60 100644 (file)
@@ -505,6 +505,7 @@ int main( int argc, char **argv )
 
    glutInit( &argc, argv );
    glutInitDisplayMode( GLUT_SINGLE | GLUT_RGB );
+   glutInitWindowPosition(0, 0);
    glutInitWindowSize( 400, 400 );
    glutCreateWindow( argv[0] );