Browse Source

add glutInitWindowPosition calls

tags/R300_DRIVER_0
Keith Whitwell 21 years ago
parent
commit
eabe7beeaa
2 changed files with 2 additions and 0 deletions
  1. 1
    0
      progs/demos/spriteblast.c
  2. 1
    0
      progs/demos/tessdemo.c

+ 1
- 0
progs/demos/spriteblast.c View File

@@ -463,6 +463,7 @@ main(int argc, char **argv)
linearFiltering = 0;
}
}
glutInitWindowPosition(0, 0);
glutInitWindowSize(600,300);
glutCreateWindow("sprite blast");
glutReshapeFunc(reshape);

+ 1
- 0
progs/demos/tessdemo.c View 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] );


Loading…
Cancel
Save