commit | 189db329caba805f4ae9ab28c675f37565fd4c9c | [log] [tgz] |
---|---|---|
author | Brian Paul <brianp@vmware.com> | Thu Apr 16 10:28:27 2009 -0600 |
committer | Brian Paul <brianp@vmware.com> | Thu Apr 16 22:07:53 2009 -0600 |
tree | da424a9930e6e3519dbb2a66fac4f8400ed43421 | |
parent | a902b6ba48c8ff8bebda95e32310781d9a0763ce [diff] [blame] |
demos: set init window size, not pos
diff --git a/progs/glsl/linktest.c b/progs/glsl/linktest.c index 601b24e..988d082 100644 --- a/progs/glsl/linktest.c +++ b/progs/glsl/linktest.c
@@ -242,7 +242,7 @@ main(int argc, char *argv[]) { glutInit(&argc, argv); - glutInitWindowPosition( 0, 0); + glutInitWindowSize(300, 300); glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH); Win = glutCreateWindow(argv[0]); glutReshapeFunc(Reshape);