summaryrefslogtreecommitdiffstats
path: root/progs/demos/gltestperf.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-12-18 08:12:55 -0700
committerBrian Paul <brianp@vmware.com>2009-12-18 13:58:14 -0700
commit263f4322e7bfa03a6c025dbc2b280e7f60e2cab1 (patch)
tree25aeab0940d8440aa88893d90f7cce7ee6a5fa99 /progs/demos/gltestperf.c
parentc8de081dc1f077a026a962244117ec69f0ba7055 (diff)
downloadexternal_mesa3d-263f4322e7bfa03a6c025dbc2b280e7f60e2cab1.zip
external_mesa3d-263f4322e7bfa03a6c025dbc2b280e7f60e2cab1.tar.gz
external_mesa3d-263f4322e7bfa03a6c025dbc2b280e7f60e2cab1.tar.bz2
progs/demos: fix glut initialization calls
Remove glutInitWindowPosition() calls to play nicer with window managers. Move glutInitWindowSize() calls before glutInit() so the the default window size can be overridden by the -geometry cmd line option.
Diffstat (limited to 'progs/demos/gltestperf.c')
-rw-r--r--progs/demos/gltestperf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/progs/demos/gltestperf.c b/progs/demos/gltestperf.c
index 2188b02..3658a39 100644
--- a/progs/demos/gltestperf.c
+++ b/progs/demos/gltestperf.c
@@ -569,10 +569,9 @@ main(int ac, char **av)
if (ac == 2)
frontbuffer = 0;
+ glutInitWindowSize(640, 480);
glutInit(&ac, av);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
- glutInitWindowPosition(0, 0);
- glutInitWindowSize(640, 480);
glutCreateWindow("OpenGL/Mesa Performances");
glutDisplayFunc(display);
glutMainLoop();