diff options
author | Brian Paul <[email protected]> | 2009-12-18 08:12:55 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-12-18 13:58:14 -0700 |
commit | 263f4322e7bfa03a6c025dbc2b280e7f60e2cab1 (patch) | |
tree | 25aeab0940d8440aa88893d90f7cce7ee6a5fa99 /progs/demos/shadowtex.c | |
parent | c8de081dc1f077a026a962244117ec69f0ba7055 (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/shadowtex.c')
-rw-r--r-- | progs/demos/shadowtex.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/progs/demos/shadowtex.c b/progs/demos/shadowtex.c index dc5a4bbc480..036f73d40b6 100644 --- a/progs/demos/shadowtex.c +++ b/progs/demos/shadowtex.c @@ -1022,9 +1022,8 @@ PrintHelp(void) int main(int argc, char *argv[]) { - glutInit(&argc, argv); - glutInitWindowPosition(0, 0); glutInitWindowSize(WindowWidth, WindowHeight); + glutInit(&argc, argv); glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH | GLUT_STENCIL); glutCreateWindow(argv[0]); glewInit(); |