summaryrefslogtreecommitdiffstats
path: root/progs/demos/bounce.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/bounce.c
parentc8de081dc1f077a026a962244117ec69f0ba7055 (diff)
downloadexternal_mesa3d-263f4322e7bfa03a6c025dbc2b280e7f60e2cab1.tar.gz
external_mesa3d-263f4322e7bfa03a6c025dbc2b280e7f60e2cab1.tar.bz2
external_mesa3d-263f4322e7bfa03a6c025dbc2b280e7f60e2cab1.zip
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/bounce.c')
-rw-r--r--progs/demos/bounce.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/progs/demos/bounce.c b/progs/demos/bounce.c
index 436bc7d1fb..a9a291e0a6 100644
--- a/progs/demos/bounce.c
+++ b/progs/demos/bounce.c
@@ -192,10 +192,8 @@ visible(int vis)
int main(int argc, char *argv[])
{
- glutInit(&argc, argv);
- glutInitWindowPosition(0, 0);
glutInitWindowSize(600, 450);
-
+ glutInit(&argc, argv);
IndexMode = argc > 1 && strcmp(argv[1], "-ci") == 0;
if (IndexMode)