refactored arg parsing into separate function
This commit is contained in:
parent
5cd3159c40
commit
64ee02b9c9
18
glxgears.c
18
glxgears.c
@ -312,7 +312,7 @@ static void reshape(int width, int height) {
|
|||||||
glMatrixMode(GL_MODELVIEW);
|
glMatrixMode(GL_MODELVIEW);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void init(int argc, char *argv[]) {
|
static void init_scene(void) {
|
||||||
glLightfv(GL_LIGHT0, GL_POSITION, (const GLfloat[]){5.0, 5.0, 10.0, 0.0});
|
glLightfv(GL_LIGHT0, GL_POSITION, (const GLfloat[]){5.0, 5.0, 10.0, 0.0});
|
||||||
glEnable(GL_CULL_FACE);
|
glEnable(GL_CULL_FACE);
|
||||||
glEnable(GL_LIGHTING);
|
glEnable(GL_LIGHTING);
|
||||||
@ -347,7 +347,14 @@ static void init(int argc, char *argv[]) {
|
|||||||
glEndList();
|
glEndList();
|
||||||
|
|
||||||
glEnable(GL_NORMALIZE);
|
glEnable(GL_NORMALIZE);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void visible(int vis) {
|
||||||
|
Visible = vis;
|
||||||
|
update_idle_func();
|
||||||
|
}
|
||||||
|
|
||||||
|
void parse_args(int argc, char *argv[]) {
|
||||||
for (GLint i = 1; i < argc; i++) {
|
for (GLint i = 1; i < argc; i++) {
|
||||||
if (strcmp(argv[i], "-info") == 0) {
|
if (strcmp(argv[i], "-info") == 0) {
|
||||||
printf("GL_VENDOR = %s\n", (char *)glGetString(GL_VENDOR));
|
printf("GL_VENDOR = %s\n", (char *)glGetString(GL_VENDOR));
|
||||||
@ -365,17 +372,12 @@ static void init(int argc, char *argv[]) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void visible(int vis) {
|
|
||||||
Visible = vis;
|
|
||||||
update_idle_func();
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
glutInitWindowSize(300, 300);
|
parse_args(argc, argv);
|
||||||
glutInit(&argc, argv);
|
glutInit(&argc, argv);
|
||||||
glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE);
|
glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE);
|
||||||
win = glutCreateWindow("Gears");
|
win = glutCreateWindow("Gears");
|
||||||
init(argc, argv);
|
init_scene();
|
||||||
|
|
||||||
glutDisplayFunc(draw);
|
glutDisplayFunc(draw);
|
||||||
glutReshapeFunc(reshape);
|
glutReshapeFunc(reshape);
|
||||||
|
Loading…
Reference in New Issue
Block a user