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/projtex.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/projtex.c')
-rw-r--r-- | progs/demos/projtex.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/progs/demos/projtex.c b/progs/demos/projtex.c index 503cf5de088..d162568b9f0 100644 --- a/progs/demos/projtex.c +++ b/progs/demos/projtex.c @@ -998,18 +998,17 @@ menu(int selection) int main(int argc, char **argv) { + glutInitWindowSize(500,500); glutInit(&argc, argv); + glutInitDisplayMode(GLUT_RGBA | GLUT_DEPTH | GLUT_DOUBLE); + (void) glutCreateWindow("projtex"); + glewInit(); if (argc > 1) { NumTextures = atoi(argv[1]); } assert(NumTextures <= MAX_TEX); - glutInitDisplayMode(GLUT_RGBA | GLUT_DEPTH | GLUT_DOUBLE); - glutInitWindowSize(500,500); - (void) glutCreateWindow("projtex"); - glewInit(); - loadTexture = loadImageTextures; drawObject = drawCube; initialize(); |