From 289f3df1ed879ccf747e00668a4e7a9fd807b984 Mon Sep 17 00:00:00 2001 From: brianp Date: Wed, 25 Jun 2003 18:01:36 +0000 Subject: [PATCH] updated version, italicize freeglut (John Fay) git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@104 7f0cb862-5218-0410-a997-914c9d46530a --- .../freeglut/doc/freeglut_user_interface.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/freeglut/freeglut/doc/freeglut_user_interface.html b/freeglut/freeglut/doc/freeglut_user_interface.html index 77645ac..47f4e7d 100644 --- a/freeglut/freeglut/doc/freeglut_user_interface.html +++ b/freeglut/freeglut/doc/freeglut_user_interface.html @@ -19,7 +19,7 @@

OpenGL Utility Toolkit

-

(freeglut)

+

(freeglut 2.0.0)

Application Programming Interface

@@ -31,11 +31,11 @@
-

The freeglut Programming Consortium

+

The freeglut Programming Consortium

-

November, 2002

+

July, 2003


@@ -323,7 +323,7 @@ There was no way for an application to loop in GLUT for a while, possibly as a subloop while a specific window was open, and then return to the calling function.  A new function, "glutMainLoopEvent", has been added to allow this functionality.  Another function, "glutLeaveMainLoop -", has also been added to allow the application to tell freeglut to clean +", has also been added to allow the application to tell freeglut to clean up and close down.

3.4.2  Action on Window Closure

Another difficulty with GLUT, especially with multiple-window programs, @@ -1120,7 +1120,7 @@ These queries do not depend on the current window.
  • GLUT_INIT_STATE - ?
  • GLUT_VERSION - Return value will be X*10000+Y*100+Z where X is the major version, Y is the minor version and Z is the patch level. - This query is only supported in freeglut (version 1.3 or later). + This query is only supported in freeglut (version 2.0.0 or later). @@ -1148,7 +1148,7 @@ functions directly, that application will only link/run with an OpenGL library that supports the extension. By using a function pointer returned from glutGetProcAddress(), the application will avoid this hard dependency and be more portable and interoperate better with various implementations of OpenGL.

    -

    Both OpenGL functions and freeglut +

    Both OpenGL functions and freeglut functions can be queried with this function.

    Changes From GLUT

    @@ -1890,7 +1890,7 @@ Programs which use the freeglut-specific extensions to GLUT should includ

    -Compile-time freeglut version testing can be done as follows: +Compile-time freeglut version testing can be done as follows:

    @@ -1905,7 +1905,7 @@ be defined.  This scheme mimics OpenGL conventions.
     

    -The freeglut version can be queried at runtime by calling +The freeglut version can be queried at runtime by calling glutGet(GLUT_VERSION). The result will be X*10000+Y*100+Z where X is the major version, Y is the minor version and Z is the patch level.