X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=doc%2Ffreeglut_user_interface.html;fp=doc%2Ffreeglut_user_interface.html;h=47f4e7d77138781964c824bd4844ac641c6c418c;hb=94f851333015d5bbe2a8034e15d713a80a7de183;hp=77645ac050bcc1a01903c3ab4fb8c7c9dccecfc3;hpb=2b76cbab75522ed10e039d017cd449c7532e668e;p=freeglut diff --git a/doc/freeglut_user_interface.html b/doc/freeglut_user_interface.html index 77645ac..47f4e7d 100644 --- a/doc/freeglut_user_interface.html +++ b/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.