mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
move initialization code aroudn so glPointParameter isn't called before checking the extension is present
This commit is contained in:
parent
b5a2fc1255
commit
af1dc7e487
1 changed files with 3 additions and 3 deletions
|
|
@ -537,6 +537,9 @@ main(int argc, char **argv)
|
|||
glutAddMenuEntry("Quit", 666);
|
||||
glutAttachMenu(GLUT_RIGHT_BUTTON);
|
||||
|
||||
makePointList();
|
||||
makeSprite();
|
||||
|
||||
glShadeModel(GL_FLAT);
|
||||
glEnable(GL_DEPTH_TEST);
|
||||
glEnable(GL_POINT_SMOOTH);
|
||||
|
|
@ -546,9 +549,6 @@ main(int argc, char **argv)
|
|||
glPointParameterfvARB(GL_POINT_DISTANCE_ATTENUATION_ARB, theQuad);
|
||||
#endif
|
||||
|
||||
makePointList();
|
||||
makeSprite();
|
||||
|
||||
glutMainLoop();
|
||||
return 0; /* ANSI C requires main to return int. */
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue