diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2004-01-28 10:09:59 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2004-01-28 10:09:59 +0000 |
commit | eabe7beeaaff94144b22e253211cf7c1b6c87726 (patch) | |
tree | c94f36f6e79dd85fa6aa111252e348bcc342fdc8 | |
parent | 469d1b0f221d93a296b1e67f1c97d8e850780c60 (diff) |
add glutInitWindowPosition calls
-rw-r--r-- | progs/demos/spriteblast.c | 1 | ||||
-rw-r--r-- | progs/demos/tessdemo.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/progs/demos/spriteblast.c b/progs/demos/spriteblast.c index c604536ab3..f1eee69724 100644 --- a/progs/demos/spriteblast.c +++ b/progs/demos/spriteblast.c @@ -463,6 +463,7 @@ main(int argc, char **argv) linearFiltering = 0; } } + glutInitWindowPosition(0, 0); glutInitWindowSize(600,300); glutCreateWindow("sprite blast"); glutReshapeFunc(reshape); diff --git a/progs/demos/tessdemo.c b/progs/demos/tessdemo.c index 66fdc6370c..26403eee0a 100644 --- a/progs/demos/tessdemo.c +++ b/progs/demos/tessdemo.c @@ -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] ); |