summaryrefslogtreecommitdiff
path: root/progs/demos/gearbox.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/gearbox.c
parentc8de081dc1f077a026a962244117ec69f0ba7055 (diff)
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/gearbox.c')
-rw-r--r--progs/demos/gearbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/demos/gearbox.c b/progs/demos/gearbox.c
index 2dcf32f92f..71d0281904 100644
--- a/progs/demos/gearbox.c
+++ b/progs/demos/gearbox.c
@@ -474,10 +474,10 @@ visible(int vis)
int
main(int argc, char *argv[])
{
+ glutInitWindowSize(WinWidth, WinHeight);
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE);
- glutInitWindowSize(WinWidth, WinHeight);
Win = glutCreateWindow("gearbox");
init(argc, argv);