From: Brian Paul Date: Thu, 16 Apr 2009 16:28:27 +0000 (-0600) Subject: demos: set init window size, not pos X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=189db329caba805f4ae9ab28c675f37565fd4c9c;p=mesa.git demos: set init window size, not pos --- diff --git a/progs/glsl/linktest.c b/progs/glsl/linktest.c index 601b24e893e..988d0823418 100644 --- a/progs/glsl/linktest.c +++ b/progs/glsl/linktest.c @@ -242,7 +242,7 @@ int 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);