]> git.cworth.org Git - apitrace-tests/blobdiff - apps/gl/tri.c
Don't force initial window position.
[apitrace-tests] / apps / gl / tri.c
index ea3b595550f4193f3d8e56d4f2ea4ae48547f091..c6c1849607b3ac6367541a58f5e414838335602f 100644 (file)
@@ -75,7 +75,7 @@ static void Draw(void)
    if (doubleBuffer) {
       glutSwapBuffers();
    }
-   
+
    glutDestroyWindow(win);
 
    exit(0);
@@ -87,8 +87,7 @@ int main(int argc, char **argv)
 
    glutInit(&argc, argv);
 
-   glutInitWindowPosition(0, 0);
-   glutInitWindowSize( 250, 250);
+   glutInitWindowSize(250, 250);
 
    type = GLUT_RGB | GLUT_ALPHA;
    type |= (doubleBuffer) ? GLUT_DOUBLE : GLUT_SINGLE;