diff options
author | Keith Whitwell <[email protected]> | 2004-02-16 14:45:56 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-02-16 14:45:56 +0000 |
commit | 7b5199e8a44dc478f8800950422efe94fa364de4 (patch) | |
tree | bcc25a4b9c727bc75081864acb107d9d9a04416e /progs/demos/pointblast.c | |
parent | 45f4c5ec3bf30d421dba1ffbffa97f5c4a14e942 (diff) |
glutInitWindowPosition
Diffstat (limited to 'progs/demos/pointblast.c')
-rw-r--r-- | progs/demos/pointblast.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/demos/pointblast.c b/progs/demos/pointblast.c index 72e51bccaec..14e9cf359fb 100644 --- a/progs/demos/pointblast.c +++ b/progs/demos/pointblast.c @@ -423,6 +423,8 @@ main(int argc, char **argv) int i; glutInit(&argc, argv); glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH | GLUT_MULTISAMPLE); + glutInitWindowPosition(0, 0); + glutInitWindowSize(300, 300); for (i=1; i<argc; i++) { if(!strcmp("-noms", argv[i])) { |