From a351855ee6b2ec6f477635a367c745d733219c3e Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 1 Jul 2003 20:19:02 +0000 Subject: [PATCH] version bumps git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@115 7f0cb862-5218-0410-a997-914c9d46530a --- doc/freeglut_user_interface.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/freeglut_user_interface.html b/doc/freeglut_user_interface.html index 47f4e7d..397ebc5 100644 --- a/doc/freeglut_user_interface.html +++ b/doc/freeglut_user_interface.html @@ -1894,13 +1894,13 @@ Compile-time freeglut version testing can be done as follows:

-#ifdef FREEGLUT_VERSION_1_4
-  code specific to freeglut 1.4 or later here
+#ifdef FREEGLUT_VERSION_2_0
+  code specific to freeglut 2.0 or later here
 #endif
 

-In future releases, FREEGLUT_VERSION_1_5, FREEGLUT_VERSION_1_6, etc will +In future releases, FREEGLUT_VERSION_2_1, FREEGLUT_VERSION_2_2, etc will be defined. This scheme mimics OpenGL conventions.

@@ -1915,8 +1915,8 @@ This may be used as follows:

-if (glutGet(GLUT_VERSION) < 10300) {
-    printf("Sorry, you need freeglut version 1.3.0 or later to run this program.\n");
+if (glutGet(GLUT_VERSION) < 20001) {
+    printf("Sorry, you need freeglut version 2.0.1 or later to run this program.\n");
     exit(1);
 }
 
-- 1.7.10.4