diff options
author | Brian <brian@yutani.localnet.net> | 2007-04-11 14:09:32 -0600 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-04-11 14:09:32 -0600 |
commit | bf287356cfc806f9df862a05620f046f8980a8e7 (patch) | |
tree | 7f0b7465c0d271cdb8a59a927eb5199d306cb35d /progs | |
parent | bce7043ebcbb75cec727553341af4c66b03732ef (diff) |
restore 200x200 window size, animation, version check
Diffstat (limited to 'progs')
-rw-r--r-- | progs/demos/fslight.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/progs/demos/fslight.c b/progs/demos/fslight.c index 736cc48ac6..493ce0e90f 100644 --- a/progs/demos/fslight.c +++ b/progs/demos/fslight.c @@ -45,7 +45,7 @@ static GLint uTexture; static GLuint SphereList, RectList, CurList; static GLint win = 0; -static GLboolean anim = GL_FALSE; +static GLboolean anim = GL_TRUE; static GLboolean wire = GL_FALSE; static GLboolean pixelLight = GL_TRUE; @@ -477,8 +477,8 @@ Init(void) version = (const char *) glGetString(GL_VERSION); if (version[0] != '2' || version[1] != '.') { - printf("Warning: this program expects OpenGL 2.0\n"); - /*exit(1);*/ + printf("This program requires OpenGL 2.x, found %s\n", version); + exit(1); } GetExtensionFuncs(); @@ -579,6 +579,8 @@ Init(void) #if 0 TestFunctions(); +#else + (void) TestFunctions; #endif } @@ -603,7 +605,7 @@ main(int argc, char *argv[]) { glutInit(&argc, argv); glutInitWindowPosition( 0, 0); - glutInitWindowSize(100, 100); + glutInitWindowSize(200, 200); glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH); win = glutCreateWindow(argv[0]); glutReshapeFunc(Reshape); |