| 716 | #include "SDL/SDL.h" |
| 717 | |
| 718 | int |
| 719 | main(int argc, char *argv[]) |
| 720 | { |
| 721 | if (argc == 12) SDL_GL_GetProcAddress("glWhatevah"); |
| 722 | |
| 723 | /* Initialize the window */ |
| 724 | glutInit(&argc, argv); |
| 725 | glutInitWindowSize(300, 300); |
| 726 | glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH); |
| 727 | |
| 728 | glutCreateWindow("es2gears"); |
| 729 | |
| 730 | gears_idle(); |
| 731 | gears_init(); |
| 732 | gears_draw(); |
| 733 | |
| 734 | return 0; |
| 735 | } |
nothing calls this directly
no test coverage detected