From 35c27b4dac142c2f5dee9cf1d47dfa2e0e9a1145 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Mon, 1 Aug 2011 16:36:13 -0400 Subject: [PATCH 01/14] Remove EXT suffix from GL_KTX_buffer_region entry points, based on info here: http://www.west.net/~brittain/3dsmax2.htm#OpenGL%20Buffer%20Region%20Extension --- auto/core/GL_KTX_buffer_region | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/auto/core/GL_KTX_buffer_region b/auto/core/GL_KTX_buffer_region index 22a59d3..adc6c6f 100644 --- a/auto/core/GL_KTX_buffer_region +++ b/auto/core/GL_KTX_buffer_region @@ -5,8 +5,8 @@ GL_KTX_buffer_region GL_KTX_BACK_REGION 0x1 GL_KTX_Z_REGION 0x2 GL_KTX_STENCIL_REGION 0x3 - GLuint glBufferRegionEnabledEXT (void) - GLuint glNewBufferRegionEXT (GLenum region) - void glDeleteBufferRegionEXT (GLenum region) - void glReadBufferRegionEXT (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height) - void glDrawBufferRegionEXT (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height, GLint xDest, GLint yDest) + GLuint glBufferRegionEnabled (void) + GLuint glNewBufferRegion (GLenum region) + void glDeleteBufferRegion (GLenum region) + void glReadBufferRegion (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height) + void glDrawBufferRegion (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height, GLint xDest, GLint yDest) From 802bac4e68efd896bb3563408d9e1f0be8704a43 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Tue, 2 Aug 2011 10:21:40 -0400 Subject: [PATCH 02/14] Add GL_VERSION_4_2 --- auto/core/GL_VERSION_4_2 | 3 +++ auto/src/glew_init_gl.c | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 auto/core/GL_VERSION_4_2 diff --git a/auto/core/GL_VERSION_4_2 b/auto/core/GL_VERSION_4_2 new file mode 100644 index 0000000..f3418cd --- /dev/null +++ b/auto/core/GL_VERSION_4_2 @@ -0,0 +1,3 @@ +GL_VERSION_4_2 +http://www.opengl.org/registry/doc/glspec41.core.20100725.pdf + diff --git a/auto/src/glew_init_gl.c b/auto/src/glew_init_gl.c index 80fa341..bad641b 100644 --- a/auto/src/glew_init_gl.c +++ b/auto/src/glew_init_gl.c @@ -44,7 +44,8 @@ GLenum glewContextInit (GLEW_CONTEXT_ARG_DEF_LIST) } else { - CONST_CAST(GLEW_VERSION_4_1) = ( major > 4 ) || ( major == 4 && minor >= 1 ) ? GL_TRUE : GL_FALSE; + CONST_CAST(GLEW_VERSION_4_2) = ( major > 4 ) || ( major == 4 && minor >= 2 ) ? GL_TRUE : GL_FALSE; + CONST_CAST(GLEW_VERSION_4_1) = GLEW_VERSION_4_2 == GL_TRUE || ( major == 4 && minor >= 1 ) ? GL_TRUE : GL_FALSE; CONST_CAST(GLEW_VERSION_4_0) = GLEW_VERSION_4_1 == GL_TRUE || ( major == 4 ) ? GL_TRUE : GL_FALSE; CONST_CAST(GLEW_VERSION_3_3) = GLEW_VERSION_4_0 == GL_TRUE || ( major == 3 && minor >= 3 ) ? GL_TRUE : GL_FALSE; CONST_CAST(GLEW_VERSION_3_2) = GLEW_VERSION_3_3 == GL_TRUE || ( major == 3 && minor >= 2 ) ? GL_TRUE : GL_FALSE; From 852e9ccd2d6545c6b341a9d3dea53442ce91ecf5 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Tue, 2 Aug 2011 10:25:25 -0400 Subject: [PATCH 03/14] Bump GLEW version to 1.7.0 - due to GL_KTX_buffer_region renaming --- config/version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/version b/config/version index 5a8422c..07df1c2 100644 --- a/config/version +++ b/config/version @@ -1,5 +1,5 @@ GLEW_MAJOR = 1 -GLEW_MINOR = 6 +GLEW_MINOR = 7 GLEW_MICRO = 0 GLEW_VERSION = $(GLEW_MAJOR).$(GLEW_MINOR).$(GLEW_MICRO) GLEW_NAME = GLEW From 2d17ae18b319d9edcd822a30d4379c407361e680 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Tue, 2 Aug 2011 13:23:50 -0400 Subject: [PATCH 04/14] Resolve ID: 3376260 Solaris also needs inttypes.h --- auto/src/glew_head.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/auto/src/glew_head.h b/auto/src/glew_head.h index 26b8808..f1a245f 100644 --- a/auto/src/glew_head.h +++ b/auto/src/glew_head.h @@ -121,9 +121,10 @@ typedef _W64 int ptrdiff_t; #include -/* SGI MIPSPro doesn't like stdint.h in C++ mode */ +/* SGI MIPSPro doesn't like stdint.h in C++ mode */ +/* ID: 3376260 Solaris 9 has inttypes.h, but not stdint.h */ -#if defined(__sgi) && !defined(__GNUC__) +#if (defined(__sgi) || defined(__sun)) && !defined(__GNUC__) #include #else #include From bc2f7a6335b2b326ade467cc77d3e980b9cf091e Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Tue, 2 Aug 2011 15:12:26 -0400 Subject: [PATCH 05/14] Resolve ID: 2975557 ERROR_INVALID_VERSION_ARB missing --- auto/core/WGL_ARB_create_context | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 auto/core/WGL_ARB_create_context diff --git a/auto/core/WGL_ARB_create_context b/auto/core/WGL_ARB_create_context new file mode 100644 index 0000000..20b3119 --- /dev/null +++ b/auto/core/WGL_ARB_create_context @@ -0,0 +1,12 @@ +WGL_ARB_create_context +http://www.opengl.org/registry/specs/ARB/wgl_create_context.txt +WGL_ARB_create_context + WGL_CONTEXT_DEBUG_BIT_ARB 0x0001 + WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002 + WGL_CONTEXT_MAJOR_VERSION_ARB 0x2091 + WGL_CONTEXT_MINOR_VERSION_ARB 0x2092 + WGL_CONTEXT_LAYER_PLANE_ARB 0x2093 + WGL_CONTEXT_FLAGS_ARB 0x2094 + ERROR_INVALID_VERSION_ARB 0x2095 + ERROR_INVALID_PROFILE_ARB 0x2096 + HGLRC wglCreateContextAttribsARB (HDC hDC, HGLRC hShareContext, const int* attribList) From a4964338e41fe57b8acadb4020b2801944b118af Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Tue, 2 Aug 2011 15:35:16 -0400 Subject: [PATCH 06/14] Resolve ID: 3362344 GLX_MESA_swap_control support request --- auto/core/GLX_MESA_swap_control | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 auto/core/GLX_MESA_swap_control diff --git a/auto/core/GLX_MESA_swap_control b/auto/core/GLX_MESA_swap_control new file mode 100644 index 0000000..4416519 --- /dev/null +++ b/auto/core/GLX_MESA_swap_control @@ -0,0 +1,5 @@ +GLX_MESA_swap_control +http://cgit.freedesktop.org/mesa/mesa/plain/docs/MESA_swap_control.spec +GLX_MESA_swap_control + int glXGetSwapIntervalMESA (void) + int glXSwapIntervalMESA (unsigned int interval) From 69ae1f09e6e4d21981601f2c3be9ed89b9cc5adb Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Tue, 2 Aug 2011 15:58:16 -0400 Subject: [PATCH 07/14] Resolve ID: 3295600 improper setting of -install_name on darwin --- config/Makefile.darwin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/Makefile.darwin b/config/Makefile.darwin index bdb0b49..09a1bf8 100644 --- a/config/Makefile.darwin +++ b/config/Makefile.darwin @@ -19,10 +19,10 @@ LIB.SONAME = lib$(NAME).$(SO_MAJOR).dylib LIB.DEVLNK = lib$(NAME).dylib LIB.SHARED = lib$(NAME).$(SO_VERSION).dylib LIB.STATIC = lib$(NAME).a -LDFLAGS.SO = -dynamiclib -install_name $(GLEW_DEST)/lib/$(LIB.SHARED) +LDFLAGS.SO = -dynamiclib -install_name $(GLEW_DEST)/lib/$(LIB.SHARED) -current_version $(SO_VERSION) -compatibility_version $(SO_MAJOR) LIB.SONAME.MX = lib$(NAME)mx.$(SO_MAJOR).dylib LIB.DEVLNK.MX = lib$(NAME)mx.dylib LIB.SHARED.MX = lib$(NAME)mx.$(SO_VERSION).dylib LIB.STATIC.MX = lib$(NAME)mx.a -LDFLAGS.SO.MX = -dynamiclib -install_name $(GLEW_DEST)/lib/$(LIB.SHARED.MX) +LDFLAGS.SO.MX = -dynamiclib -install_name $(GLEW_DEST)/lib/$(LIB.SHARED.MX) -current_version $(SO_VERSION) -compatibility_version $(SO_MAJOR) SHARED_OBJ_EXT = pic_o From 9c59bf567e4c12b36a5eb3970ab278f06626635f Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Tue, 2 Aug 2011 16:08:53 -0400 Subject: [PATCH 08/14] Resolve ID: 2797077 How do I compile for mac os x x64? --- config/Makefile.darwin-x86_64 | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 config/Makefile.darwin-x86_64 diff --git a/config/Makefile.darwin-x86_64 b/config/Makefile.darwin-x86_64 new file mode 100644 index 0000000..427c5fa --- /dev/null +++ b/config/Makefile.darwin-x86_64 @@ -0,0 +1,28 @@ +NAME = $(GLEW_NAME) +CC = cc +LD = cc +CFLAGS.EXTRA = -arch x86_64 -no-cpp-precomp -dynamic -fno-common +PICFLAG = -fPIC +LDFLAGS.EXTRA = -arch x86_64 +ifneq (undefined, $(origin GLEW_APPLE_GLX)) +CFLAGS.EXTRA += -I/usr/X11R6/include -D'GLEW_APPLE_GLX' +LDFLAGS.GL = -L/usr/X11R6/lib -lXmu -lXi -lGLU -lGL -lXext -lX11 +else +LDFLAGS.GL = -framework AGL -framework OpenGL +endif +LDFLAGS.STATIC = +LDFLAGS.DYNAMIC = +WARN = -Wall -W +POPT = -O2 +BIN.SUFFIX = +LIB.SONAME = lib$(NAME).$(SO_MAJOR).dylib +LIB.DEVLNK = lib$(NAME).dylib +LIB.SHARED = lib$(NAME).$(SO_VERSION).dylib +LIB.STATIC = lib$(NAME).a +LDFLAGS.SO = -dynamiclib -install_name $(GLEW_DEST)/lib/$(LIB.SHARED) -current_version $(SO_VERSION) -compatibility_version $(SO_MAJOR) +LIB.SONAME.MX = lib$(NAME)mx.$(SO_MAJOR).dylib +LIB.DEVLNK.MX = lib$(NAME)mx.dylib +LIB.SHARED.MX = lib$(NAME)mx.$(SO_VERSION).dylib +LIB.STATIC.MX = lib$(NAME)mx.a +LDFLAGS.SO.MX = -dynamiclib -install_name $(GLEW_DEST)/lib/$(LIB.SHARED.MX) -current_version $(SO_VERSION) -compatibility_version $(SO_MAJOR) +SHARED_OBJ_EXT = pic_o From 898f22082db36617ac0e1d4776750598a0dc1ea0 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Tue, 2 Aug 2011 17:17:30 -0400 Subject: [PATCH 09/14] Add a build.html documentation page for describing some of the make targets and variables. --- auto/Makefile | 1 + auto/doc/advanced.html | 25 ++-- auto/doc/build.html | 35 ++++++ auto/src/header.html | 5 +- doc/build.html | 279 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 327 insertions(+), 18 deletions(-) create mode 100644 auto/doc/build.html create mode 100644 doc/build.html diff --git a/auto/Makefile b/auto/Makefile index f4a24d1..619afab 100644 --- a/auto/Makefile +++ b/auto/Makefile @@ -64,6 +64,7 @@ D.TARGETS = \ $(D.DEST)/install.html \ $(D.DEST)/basic.html \ $(D.DEST)/advanced.html \ + $(D.DEST)/build.html \ $(D.DEST)/credits.html \ $(D.DEST)/log.html \ $(D.DEST)/glew.html \ diff --git a/auto/doc/advanced.html b/auto/doc/advanced.html index 45a3ada..4bf2aa8 100644 --- a/auto/doc/advanced.html +++ b/auto/doc/advanced.html @@ -23,29 +23,22 @@ root directory is mounted in binary mode. The makefile in the auto directory provides the following build targets:

-
- - - -
make    Create the source files from the descriptors. If the -descriptors do not exist, create them from the spec files. If the spec + + + - - + - - + - - + - - +
makeCreate the source files from the descriptors.
If the +descriptors do not exist, create them from the spec files.
If the spec files do not exist, download them from the OpenGL repository.
make clean    
make clean Delete the source files.
make clobber    
make clobber Delete the source files and the descriptors.
make destroy    
make destroy Delete the source files, the descriptors, and the spec files.
make custom    
make custom Create the source files for the extensions -listed in auto/custom.txt. See "Custom Code +listed in auto/custom.txt.
See "Custom Code Generation" below for more details.
-

Adding a New Extension

diff --git a/auto/doc/build.html b/auto/doc/build.html new file mode 100644 index 0000000..888f3f5 --- /dev/null +++ b/auto/doc/build.html @@ -0,0 +1,35 @@ +

Building GLEW

+ +

Windows

+ +

A MS Visual Studio project is provided in the build/vc6 directory.

+

Pre-built shared and static libraries are also available for download.

+ +

Makefile

+ +

For platforms other than MS Windows, the provided Makefile is used.

+ +

Command-line variables:

+ + + + + + +
SYSTEMautoTarget system to build: darwin, linux, solaris, etc.
For a full list of supported targets: ls config/Makefile.*
+config.guess is used to auto detect, as necessary.
GLEW_DEST/usrBase directory for installation.
+ +

Make targets:

+ + + + + + + + + + + + +
allBuild everything.
glew.libBuild static and dynamic GLEW libraries.
glew.lib.mxBuild static and dynamic GLEWmx libraries.
glew.binBuild glewinfo and visualinfo utilities.
cleanDelete temporary and built files.
install.allInstall everything.
installInstall GLEW libraries.
install.mxInstall GLEWmx libraries.
install.binInstall glewinfo and visualinfo utilities.
uninstallDelete installed files.
diff --git a/auto/src/header.html b/auto/src/header.html index 4cbd3df..5fa4911 100644 --- a/auto/src/header.html +++ b/auto/src/header.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
+ + - - + diff --git a/doc/build.html b/doc/build.html new file mode 100644 index 0000000..028e61d --- /dev/null +++ b/doc/build.html @@ -0,0 +1,279 @@ + + + + + + +GLEW: The OpenGL Extension Wrangler Library + + + + +
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
+ + + +
+ + + + + + + + +
+ + + + + + + +
Latest Release: 1.6.0

GLEW Logo

+ + + + + + + + + + + +
Download
Installation
Basic Usage
Source Generation
Building
Credits & Copyright
Change Log
Project Page
Mailing Lists
Bug Tracker
+

+
+ + + + + +
Last Update: 04-27-11
+ OpenGL Logo + SourceForge Logo +
+
+
+ +

The OpenGL Extension Wrangler Library

+ + + + +

Automatic Code Generation

+ +

+Starting from release 1.1.0, the source code and parts of the +documentation are automatically generated from the extension +specifications in a two-step process. In the first step, +specification files from the OpenGL registry are downloaded and +parsed. Skeleton descriptors are created for each extension. These +descriptors contain all necessary information for creating the source +code and documentation in a simple and compact format, including the +name of the extension, url link to the specification, tokens, function +declarations, typedefs and struct definitions. In the second step, +the header files as well as the library and glewinfo source are +generated from the descriptor files. The code generation scripts are +located in the auto subdirectory. +

+ +

+The code generation scripts require GNU make, wget, and perl. On +Windows, the simplest way to get access to these tools is to install +Cygwin, but make sure that the +root directory is mounted in binary mode. The makefile in the +auto directory provides the following build targets: +

+ +
+ + + + + + + + + + + + + + + + +
make    Create the source files from the descriptors. If the +descriptors do not exist, create them from the spec files. If the spec +files do not exist, download them from the OpenGL repository.
make clean    Delete the source files.
make clobber    Delete the source files and the descriptors.
make destroy    Delete the source files, the descriptors, and the spec files.
make custom    Create the source files for the extensions +listed in auto/custom.txt. See "Custom Code +Generation" below for more details.
+
+ +

Adding a New Extension

+ +

+To add a new extension, create a descriptor file for the extension in +auto/core and rerun the code generation scripts by typing +make clean; make in the auto directory. +

+ +

+The format of the descriptor file is given below. Items in +brackets are optional. +

+ +

+<Extension Name>
+[<URL of Specification File>]
+    [<Token Name> <Token Value>]
+    [<Token Name> <Token Value>]
+    ...
+    [<Typedef>]
+    [<Typedef>]
+    ...
+    [<Function Signature>]
+    [<Function Signature>]
+    ...
+ +

+ + + +

+Take a look at one of the files in auto/core for an +example. Note that typedefs and function signatures should not be +terminated with a semicolon. +

+ +

Custom Code Generation

+

+Starting from GLEW 1.3.0, it is possible to control which extensions +to include in the libarary by specifying a list in +auto/custom.txt. This is useful when you do not need all the +extensions and would like to reduce the size of the source files. +Type make clean; make custom in the auto directory +to rerun the scripts with the custom list of extensions. +

+ +

+For example, the following is the list of extensions needed to get GLEW and the +utilities to compile. +

+ +

+WGL_ARB_extensions_string
+WGL_ARB_multisample
+WGL_ARB_pixel_format
+WGL_ARB_pbuffer
+WGL_EXT_extensions_string
+WGL_ATI_pixel_format_float
+WGL_NV_float_buffer
+

+ +

Multiple Rendering Contexts (GLEW MX)

+ +

Starting with release 1.2.0, thread-safe support for multiple +rendering contexts, possibly with different capabilities, is +available. Since this is not required by most users, it is not added +to the binary releases to maintain compatibility between different +versions. To include multi-context support, you have to do the +following:

+
    +
  1. Compile and use GLEW with the GLEW_MX preprocessor token +defined.
  2. +
  3. For each rendering context, create a GLEWContext object +that will be available as long as the rendering context exists.
  4. +
  5. Define a macro or function called glewGetContext() that +returns a pointer to the GLEWContext object associated with +the rendering context from which OpenGL/WGL/GLX calls are issued. This +dispatch mechanism is primitive, but generic. +
  6. Make sure that you call glewInit() after creating the +GLEWContext object in each rendering context. Note, that the +GLEWContext pointer returned by glewGetContext() has +to reside in global or thread-local memory. +
+ +

Note that according to the MSDN +WGL documentation, you have to initialize the entry points for +every rendering context that use pixel formats with different +capabilities For example, the pixel formats provided by the generic +software OpenGL implementation by Microsoft vs. the hardware +accelerated pixel formats have different capabilities. GLEW by +default ignores this requirement, and does not define per-context +entry points (you can however do this using the steps described +above). Assuming a global namespace for the entry points works in +most situations, because typically all hardware accelerated pixel +formats provide the same entry points and capabilities. This means +that unless you use the multi-context version of GLEW, you need to +call glewInit() only once in your program, or more precisely, +once per process.

+ +

Separate Namespace

+ +

+To avoid name clashes when linking with libraries that include the +same symbols, extension entry points are declared in a separate +namespace (release 1.1.0 and up). This is achieved by aliasing OpenGL +function names to their GLEW equivalents. For instance, +glFancyFunction is simply an alias to +glewFancyFunction. The separate namespace does not effect +token and function pointer definitions. +

+ +

Known Issues

+ +

+GLEW requires GLX 1.2 for compatibility with GLUT. +

+ + +
+ + From 8d72097e8afbeaef4517c6f479b99239af87fe91 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Sat, 20 Aug 2011 18:17:18 -0500 Subject: [PATCH 10/14] Documentation updates for GLEW 1.7.0 --- doc/advanced.html | 30 +- doc/basic.html | 5 +- doc/build.html | 205 ++---------- doc/credits.html | 5 +- doc/glew.html | 810 +++++++++++++++++++++++----------------------- doc/glxew.html | 60 ++-- doc/index.html | 5 +- doc/install.html | 5 +- doc/log.html | 5 +- doc/wglew.html | 5 +- 10 files changed, 505 insertions(+), 630 deletions(-) diff --git a/doc/advanced.html b/doc/advanced.html index 73eccaf..fd86603 100644 --- a/doc/advanced.html +++ b/doc/advanced.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
+ + - - + @@ -121,29 +122,22 @@ root directory is mounted in binary mode. The makefile in the auto directory provides the following build targets:

-
-
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
- - -
make    Create the source files from the descriptors. If the -descriptors do not exist, create them from the spec files. If the spec + + + - - + - - + - - + - - +
makeCreate the source files from the descriptors.
If the +descriptors do not exist, create them from the spec files.
If the spec files do not exist, download them from the OpenGL repository.
make clean    
make clean Delete the source files.
make clobber    
make clobber Delete the source files and the descriptors.
make destroy    
make destroy Delete the source files, the descriptors, and the spec files.
make custom    
make custom Create the source files for the extensions -listed in auto/custom.txt. See "Custom Code +listed in auto/custom.txt.
See "Custom Code Generation" below for more details.
-

Adding a New Extension

diff --git a/doc/basic.html b/doc/basic.html index c961613..f04f8d2 100644 --- a/doc/basic.html +++ b/doc/basic.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
+ + - - + diff --git a/doc/build.html b/doc/build.html index 028e61d..caa2804 100644 --- a/doc/build.html +++ b/doc/build.html @@ -53,10 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
- - - + + + @@ -97,182 +97,41 @@ width="88" height="32" border="0" alt="Support This Project"> --> -

Automatic Code Generation

+

Building GLEW

-

-Starting from release 1.1.0, the source code and parts of the -documentation are automatically generated from the extension -specifications in a two-step process. In the first step, -specification files from the OpenGL registry are downloaded and -parsed. Skeleton descriptors are created for each extension. These -descriptors contain all necessary information for creating the source -code and documentation in a simple and compact format, including the -name of the extension, url link to the specification, tokens, function -declarations, typedefs and struct definitions. In the second step, -the header files as well as the library and glewinfo source are -generated from the descriptor files. The code generation scripts are -located in the auto subdirectory. -

+

Windows

-

-The code generation scripts require GNU make, wget, and perl. On -Windows, the simplest way to get access to these tools is to install -Cygwin, but make sure that the -root directory is mounted in binary mode. The makefile in the -auto directory provides the following build targets: -

+

A MS Visual Studio project is provided in the build/vc6 directory.

+

Pre-built shared and static libraries are also available for download.

-
-
Download
Installation
Basic Usage
Source Generation
Usage
Building
Installation
Source Generation
Credits & Copyright
Change Log
Project Page
- - - - - - - - - - - - - - - +

Makefile

+ +

For platforms other than MS Windows, the provided Makefile is used.

+ +

Command-line variables:

+ +
make    Create the source files from the descriptors. If the -descriptors do not exist, create them from the spec files. If the spec -files do not exist, download them from the OpenGL repository.
make clean    Delete the source files.
make clobber    Delete the source files and the descriptors.
make destroy    Delete the source files, the descriptors, and the spec files.
make custom    Create the source files for the extensions -listed in auto/custom.txt. See "Custom Code -Generation" below for more details.
+ + + +
SYSTEMautoTarget system to build: darwin, linux, solaris, etc.
For a full list of supported targets: ls config/Makefile.*
+config.guess is used to auto detect, as necessary.
GLEW_DEST/usrBase directory for installation.
- -

Adding a New Extension

- -

-To add a new extension, create a descriptor file for the extension in -auto/core and rerun the code generation scripts by typing -make clean; make in the auto directory. -

- -

-The format of the descriptor file is given below. Items in -brackets are optional. -

- -

-<Extension Name>
-[<URL of Specification File>]
-    [<Token Name> <Token Value>]
-    [<Token Name> <Token Value>]
-    ...
-    [<Typedef>]
-    [<Typedef>]
-    ...
-    [<Function Signature>]
-    [<Function Signature>]
-    ...
- -

- - - -

-Take a look at one of the files in auto/core for an -example. Note that typedefs and function signatures should not be -terminated with a semicolon. -

- -

Custom Code Generation

-

-Starting from GLEW 1.3.0, it is possible to control which extensions -to include in the libarary by specifying a list in -auto/custom.txt. This is useful when you do not need all the -extensions and would like to reduce the size of the source files. -Type make clean; make custom in the auto directory -to rerun the scripts with the custom list of extensions. -

- -

-For example, the following is the list of extensions needed to get GLEW and the -utilities to compile. -

- -

-WGL_ARB_extensions_string
-WGL_ARB_multisample
-WGL_ARB_pixel_format
-WGL_ARB_pbuffer
-WGL_EXT_extensions_string
-WGL_ATI_pixel_format_float
-WGL_NV_float_buffer
-

- -

Multiple Rendering Contexts (GLEW MX)

- -

Starting with release 1.2.0, thread-safe support for multiple -rendering contexts, possibly with different capabilities, is -available. Since this is not required by most users, it is not added -to the binary releases to maintain compatibility between different -versions. To include multi-context support, you have to do the -following:

-
    -
  1. Compile and use GLEW with the GLEW_MX preprocessor token -defined.
  2. -
  3. For each rendering context, create a GLEWContext object -that will be available as long as the rendering context exists.
  4. -
  5. Define a macro or function called glewGetContext() that -returns a pointer to the GLEWContext object associated with -the rendering context from which OpenGL/WGL/GLX calls are issued. This -dispatch mechanism is primitive, but generic. -
  6. Make sure that you call glewInit() after creating the -GLEWContext object in each rendering context. Note, that the -GLEWContext pointer returned by glewGetContext() has -to reside in global or thread-local memory. -
- -

Note that according to the MSDN -WGL documentation, you have to initialize the entry points for -every rendering context that use pixel formats with different -capabilities For example, the pixel formats provided by the generic -software OpenGL implementation by Microsoft vs. the hardware -accelerated pixel formats have different capabilities. GLEW by -default ignores this requirement, and does not define per-context -entry points (you can however do this using the steps described -above). Assuming a global namespace for the entry points works in -most situations, because typically all hardware accelerated pixel -formats provide the same entry points and capabilities. This means -that unless you use the multi-context version of GLEW, you need to -call glewInit() only once in your program, or more precisely, -once per process.

- -

Separate Namespace

- -

-To avoid name clashes when linking with libraries that include the -same symbols, extension entry points are declared in a separate -namespace (release 1.1.0 and up). This is achieved by aliasing OpenGL -function names to their GLEW equivalents. For instance, -glFancyFunction is simply an alias to -glewFancyFunction. The separate namespace does not effect -token and function pointer definitions. -

- -

Known Issues

- -

-GLEW requires GLX 1.2 for compatibility with GLUT. -

+

Make targets:

+ + + + + + + + + + + +
allBuild everything.
glew.libBuild static and dynamic GLEW libraries.
glew.lib.mxBuild static and dynamic GLEWmx libraries.
glew.binBuild glewinfo and visualinfo utilities.
cleanDelete temporary and built files.
install.allInstall everything.
installInstall GLEW libraries.
install.mxInstall GLEWmx libraries.
install.binInstall glewinfo and visualinfo utilities.
uninstallDelete installed files.
diff --git a/doc/credits.html b/doc/credits.html index e6d743d..7464dc1 100644 --- a/doc/credits.html +++ b/doc/credits.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
+ + - - + diff --git a/doc/glew.html b/doc/glew.html index b8887c9..ae2adaf 100644 --- a/doc/glew.html +++ b/doc/glew.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
+ + - - + @@ -108,428 +109,441 @@ width="88" height="32" border="0" alt="Support This Project"> --> - - - - - - - - + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - + + + + - - - - - - + + + + + + - - + + - - + + - + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - + + + - - + + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - - - - - - - + + + + + + + - - - + + +
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
6 AMD_debug_output
7 AMD_depth_clamp_separate
8 AMD_draw_buffers_blend
9 AMD_name_gen_delete
10 AMD_performance_monitor
11 AMD_sample_positions
12 AMD_seamless_cubemap_per_texture
13 AMD_shader_stencil_export
14 AMD_texture_texture4
15 AMD_transform_feedback3_lines_triangles
16 AMD_vertex_shader_tessellator
9 AMD_multi_draw_indirect
10 AMD_name_gen_delete
11 AMD_performance_monitor
12 AMD_sample_positions
13 AMD_seamless_cubemap_per_texture
14 AMD_shader_stencil_export
15 AMD_texture_texture4
16 AMD_transform_feedback3_lines_triangles
17 AMD_vertex_shader_tessellator

17 APPLE_aux_depth_stencil
18 APPLE_client_storage
19 APPLE_element_array
20 APPLE_fence
21 APPLE_float_pixels
22 APPLE_flush_buffer_range
23 APPLE_object_purgeable
24 APPLE_pixel_buffer
25 APPLE_rgb_422
26 APPLE_row_bytes
27 APPLE_specular_vector
28 APPLE_texture_range
29 APPLE_transform_hint
30 APPLE_vertex_array_object
31 APPLE_vertex_array_range
32 APPLE_vertex_program_evaluators
33 APPLE_ycbcr_422
18 APPLE_aux_depth_stencil
19 APPLE_client_storage
20 APPLE_element_array
21 APPLE_fence
22 APPLE_float_pixels
23 APPLE_flush_buffer_range
24 APPLE_object_purgeable
25 APPLE_pixel_buffer
26 APPLE_rgb_422
27 APPLE_row_bytes
28 APPLE_specular_vector
29 APPLE_texture_range
30 APPLE_transform_hint
31 APPLE_vertex_array_object
32 APPLE_vertex_array_range
33 APPLE_vertex_program_evaluators
34 APPLE_ycbcr_422

34 ARB_ES2_compatibility
35 ARB_blend_func_extended
36 ARB_cl_event
37 ARB_color_buffer_float
38 ARB_compatibility
39 ARB_copy_buffer
40 ARB_debug_output
41 ARB_depth_buffer_float
42 ARB_depth_clamp
43 ARB_depth_texture
44 ARB_draw_buffers
45 ARB_draw_buffers_blend
46 ARB_draw_elements_base_vertex
47 ARB_draw_indirect
48 ARB_draw_instanced
49 ARB_explicit_attrib_location
50 ARB_fragment_coord_conventions
51 ARB_fragment_program
52 ARB_fragment_program_shadow
53 ARB_fragment_shader
54 ARB_framebuffer_object
55 ARB_framebuffer_sRGB
56 ARB_geometry_shader4
57 ARB_get_program_binary
58 ARB_gpu_shader5
59 ARB_gpu_shader_fp64
60 ARB_half_float_pixel
61 ARB_half_float_vertex
62 ARB_imaging
63 ARB_instanced_arrays
64 ARB_map_buffer_range
65 ARB_matrix_palette
66 ARB_multisample
67 ARB_multitexture
68 ARB_occlusion_query
69 ARB_occlusion_query2
70 ARB_pixel_buffer_object
71 ARB_point_parameters
72 ARB_point_sprite
73 ARB_provoking_vertex
74 ARB_robustness
75 ARB_sample_shading
76 ARB_sampler_objects
77 ARB_seamless_cube_map
78 ARB_separate_shader_objects
79 ARB_shader_bit_encoding
80 ARB_shader_objects
81 ARB_shader_precision
82 ARB_shader_stencil_export
83 ARB_shader_subroutine
84 ARB_shader_texture_lod
85 ARB_shading_language_100
86 ARB_shading_language_include
87 ARB_shadow
88 ARB_shadow_ambient
89 ARB_sync
90 ARB_tessellation_shader
91 ARB_texture_border_clamp
92 ARB_texture_buffer_object
93 ARB_texture_buffer_object_rgb32
94 ARB_texture_compression
95 ARB_texture_compression_bptc
96 ARB_texture_compression_rgtc
97 ARB_texture_cube_map
98 ARB_texture_cube_map_array
99 ARB_texture_env_add
100 ARB_texture_env_combine
101 ARB_texture_env_crossbar
102 ARB_texture_env_dot3
103 ARB_texture_float
104 ARB_texture_gather
105 ARB_texture_mirrored_repeat
106 ARB_texture_multisample
107 ARB_texture_non_power_of_two
108 ARB_texture_query_lod
109 ARB_texture_rectangle
110 ARB_texture_rg
111 ARB_texture_rgb10_a2ui
112 ARB_texture_swizzle
113 ARB_timer_query
114 ARB_transform_feedback2
115 ARB_transform_feedback3
116 ARB_transpose_matrix
117 ARB_uniform_buffer_object
118 ARB_vertex_array_bgra
119 ARB_vertex_array_object
120 ARB_vertex_attrib_64bit
121 ARB_vertex_blend
122 ARB_vertex_buffer_object
123 ARB_vertex_program
124 ARB_vertex_shader
125 ARB_vertex_type_2_10_10_10_rev
126 ARB_viewport_array
127 ARB_window_pos
35 ARB_ES2_compatibility
36 ARB_base_instance
37 ARB_blend_func_extended
38 ARB_cl_event
39 ARB_color_buffer_float
40 ARB_compatibility
41 ARB_compressed_texture_pixel_storage
42 ARB_conservative_depth
43 ARB_copy_buffer
44 ARB_debug_output
45 ARB_depth_buffer_float
46 ARB_depth_clamp
47 ARB_depth_texture
48 ARB_draw_buffers
49 ARB_draw_buffers_blend
50 ARB_draw_elements_base_vertex
51 ARB_draw_indirect
52 ARB_draw_instanced
53 ARB_explicit_attrib_location
54 ARB_fragment_coord_conventions
55 ARB_fragment_program
56 ARB_fragment_program_shadow
57 ARB_fragment_shader
58 ARB_framebuffer_object
59 ARB_framebuffer_sRGB
60 ARB_geometry_shader4
61 ARB_get_program_binary
62 ARB_gpu_shader5
63 ARB_gpu_shader_fp64
64 ARB_half_float_pixel
65 ARB_half_float_vertex
66 ARB_imaging
67 ARB_instanced_arrays
68 ARB_internalformat_query
69 ARB_map_buffer_alignment
70 ARB_map_buffer_range
71 ARB_matrix_palette
72 ARB_multisample
73 ARB_multitexture
74 ARB_occlusion_query
75 ARB_occlusion_query2
76 ARB_pixel_buffer_object
77 ARB_point_parameters
78 ARB_point_sprite
79 ARB_provoking_vertex
80 ARB_robustness
81 ARB_sample_shading
82 ARB_sampler_objects
83 ARB_seamless_cube_map
84 ARB_separate_shader_objects
85 ARB_shader_atomic_counters
86 ARB_shader_bit_encoding
87 ARB_shader_image_load_store
88 ARB_shader_objects
89 ARB_shader_precision
90 ARB_shader_stencil_export
91 ARB_shader_subroutine
92 ARB_shader_texture_lod
93 ARB_shading_language_100
94 ARB_shading_language_420pack
95 ARB_shading_language_include
96 ARB_shading_language_packing
97 ARB_shadow
98 ARB_shadow_ambient
99 ARB_sync
100 ARB_tessellation_shader
101 ARB_texture_border_clamp
102 ARB_texture_buffer_object
103 ARB_texture_buffer_object_rgb32
104 ARB_texture_compression
105 ARB_texture_compression_bptc
106 ARB_texture_compression_rgtc
107 ARB_texture_cube_map
108 ARB_texture_cube_map_array
109 ARB_texture_env_add
110 ARB_texture_env_combine
111 ARB_texture_env_crossbar
112 ARB_texture_env_dot3
113 ARB_texture_float
114 ARB_texture_gather
115 ARB_texture_mirrored_repeat
116 ARB_texture_multisample
117 ARB_texture_non_power_of_two
118 ARB_texture_query_lod
119 ARB_texture_rectangle
120 ARB_texture_rg
121 ARB_texture_rgb10_a2ui
122 ARB_texture_storage
123 ARB_texture_swizzle
124 ARB_timer_query
125 ARB_transform_feedback2
126 ARB_transform_feedback3
127 ARB_transform_feedback_instanced
128 ARB_transpose_matrix
129 ARB_uniform_buffer_object
130 ARB_vertex_array_bgra
131 ARB_vertex_array_object
132 ARB_vertex_attrib_64bit
133 ARB_vertex_blend
134 ARB_vertex_buffer_object
135 ARB_vertex_program
136 ARB_vertex_shader
137 ARB_vertex_type_2_10_10_10_rev
138 ARB_viewport_array
139 ARB_window_pos

128 ATIX_point_sprites
129 ATIX_texture_env_combine3
130 ATIX_texture_env_route
131 ATIX_vertex_shader_output_point_size
140 ATIX_point_sprites
141 ATIX_texture_env_combine3
142 ATIX_texture_env_route
143 ATIX_vertex_shader_output_point_size

132 ATI_draw_buffers
133 ATI_element_array
134 ATI_envmap_bumpmap
135 ATI_fragment_shader
136 ATI_map_object_buffer
137 ATI_meminfo
138 ATI_pn_triangles
139 ATI_separate_stencil
140 ATI_shader_texture_lod
141 ATI_text_fragment_shader
142 ATI_texture_compression_3dc
143 ATI_texture_env_combine3
144 ATI_texture_float
145 ATI_texture_mirror_once
146 ATI_vertex_array_object
147 ATI_vertex_attrib_array_object
148 ATI_vertex_streams
144 ATI_draw_buffers
145 ATI_element_array
146 ATI_envmap_bumpmap
147 ATI_fragment_shader
148 ATI_map_object_buffer
149 ATI_meminfo
150 ATI_pn_triangles
151 ATI_separate_stencil
152 ATI_shader_texture_lod
153 ATI_text_fragment_shader
154 ATI_texture_compression_3dc
155 ATI_texture_env_combine3
156 ATI_texture_float
157 ATI_texture_mirror_once
158 ATI_vertex_array_object
159 ATI_vertex_attrib_array_object
160 ATI_vertex_streams

149 EXT_422_pixels
150 EXT_Cg_shader
151 EXT_abgr
152 EXT_bgra
153 EXT_bindable_uniform
154 EXT_blend_color
155 EXT_blend_equation_separate
156 EXT_blend_func_separate
157 EXT_blend_logic_op
158 EXT_blend_minmax
159 EXT_blend_subtract
160 EXT_clip_volume_hint
161 EXT_cmyka
162 EXT_color_subtable
163 EXT_compiled_vertex_array
164 EXT_convolution
165 EXT_coordinate_frame
166 EXT_copy_texture
167 EXT_cull_vertex
168 EXT_depth_bounds_test
169 EXT_direct_state_access
170 EXT_draw_buffers2
171 EXT_draw_instanced
172 EXT_draw_range_elements
173 EXT_fog_coord
174 EXT_fragment_lighting
175 EXT_framebuffer_blit
176 EXT_framebuffer_multisample
177 EXT_framebuffer_object
178 EXT_framebuffer_sRGB
179 EXT_geometry_shader4
180 EXT_gpu_program_parameters
181 EXT_gpu_shader4
182 EXT_histogram
183 EXT_index_array_formats
184 EXT_index_func
185 EXT_index_material
186 EXT_index_texture
187 EXT_light_texture
188 EXT_misc_attribute
189 EXT_multi_draw_arrays
190 EXT_multisample
191 EXT_packed_depth_stencil
192 EXT_packed_float
193 EXT_packed_pixels
194 EXT_paletted_texture
195 EXT_pixel_buffer_object
196 EXT_pixel_transform
197 EXT_pixel_transform_color_table
198 EXT_point_parameters
199 EXT_polygon_offset
200 EXT_provoking_vertex
201 EXT_rescale_normal
202 EXT_scene_marker
203 EXT_secondary_color
204 EXT_separate_shader_objects
205 EXT_separate_specular_color
206 EXT_shader_image_load_store
207 EXT_shadow_funcs
208 EXT_shared_texture_palette
209 EXT_stencil_clear_tag
210 EXT_stencil_two_side
211 EXT_stencil_wrap
212 EXT_subtexture
213 EXT_texture
214 EXT_texture3D
215 EXT_texture_array
216 EXT_texture_buffer_object
217 EXT_texture_compression_dxt1
218 EXT_texture_compression_latc
219 EXT_texture_compression_rgtc
220 EXT_texture_compression_s3tc
221 EXT_texture_cube_map
222 EXT_texture_edge_clamp
223 EXT_texture_env
224 EXT_texture_env_add
225 EXT_texture_env_combine
226 EXT_texture_env_dot3
227 EXT_texture_filter_anisotropic
228 EXT_texture_integer
229 EXT_texture_lod_bias
230 EXT_texture_mirror_clamp
231 EXT_texture_object
232 EXT_texture_perturb_normal
233 EXT_texture_rectangle
234 EXT_texture_sRGB
235 EXT_texture_sRGB_decode
236 EXT_texture_shared_exponent
237 EXT_texture_snorm
238 EXT_texture_swizzle
239 EXT_timer_query
240 EXT_transform_feedback
241 EXT_vertex_array
242 EXT_vertex_array_bgra
243 EXT_vertex_attrib_64bit
244 EXT_vertex_shader
245 EXT_vertex_weighting
246 EXT_x11_sync_object
161 EXT_422_pixels
162 EXT_Cg_shader
163 EXT_abgr
164 EXT_bgra
165 EXT_bindable_uniform
166 EXT_blend_color
167 EXT_blend_equation_separate
168 EXT_blend_func_separate
169 EXT_blend_logic_op
170 EXT_blend_minmax
171 EXT_blend_subtract
172 EXT_clip_volume_hint
173 EXT_cmyka
174 EXT_color_subtable
175 EXT_compiled_vertex_array
176 EXT_convolution
177 EXT_coordinate_frame
178 EXT_copy_texture
179 EXT_cull_vertex
180 EXT_depth_bounds_test
181 EXT_direct_state_access
182 EXT_draw_buffers2
183 EXT_draw_instanced
184 EXT_draw_range_elements
185 EXT_fog_coord
186 EXT_fragment_lighting
187 EXT_framebuffer_blit
188 EXT_framebuffer_multisample
189 EXT_framebuffer_multisample_blit_scaled
190 EXT_framebuffer_object
191 EXT_framebuffer_sRGB
192 EXT_geometry_shader4
193 EXT_gpu_program_parameters
194 EXT_gpu_shader4
195 EXT_histogram
196 EXT_index_array_formats
197 EXT_index_func
198 EXT_index_material
199 EXT_index_texture
200 EXT_light_texture
201 EXT_misc_attribute
202 EXT_multi_draw_arrays
203 EXT_multisample
204 EXT_packed_depth_stencil
205 EXT_packed_float
206 EXT_packed_pixels
207 EXT_paletted_texture
208 EXT_pixel_buffer_object
209 EXT_pixel_transform
210 EXT_pixel_transform_color_table
211 EXT_point_parameters
212 EXT_polygon_offset
213 EXT_provoking_vertex
214 EXT_rescale_normal
215 EXT_scene_marker
216 EXT_secondary_color
217 EXT_separate_shader_objects
218 EXT_separate_specular_color
219 EXT_shader_image_load_store
220 EXT_shadow_funcs
221 EXT_shared_texture_palette
222 EXT_stencil_clear_tag
223 EXT_stencil_two_side
224 EXT_stencil_wrap
225 EXT_subtexture
226 EXT_texture
227 EXT_texture3D
228 EXT_texture_array
229 EXT_texture_buffer_object
230 EXT_texture_compression_dxt1
231 EXT_texture_compression_latc
232 EXT_texture_compression_rgtc
233 EXT_texture_compression_s3tc
234 EXT_texture_cube_map
235 EXT_texture_edge_clamp
236 EXT_texture_env
237 EXT_texture_env_add
238 EXT_texture_env_combine
239 EXT_texture_env_dot3
240 EXT_texture_filter_anisotropic
241 EXT_texture_integer
242 EXT_texture_lod_bias
243 EXT_texture_mirror_clamp
244 EXT_texture_object
245 EXT_texture_perturb_normal
246 EXT_texture_rectangle
247 EXT_texture_sRGB
248 EXT_texture_sRGB_decode
249 EXT_texture_shared_exponent
250 EXT_texture_snorm
251 EXT_texture_swizzle
252 EXT_timer_query
253 EXT_transform_feedback
254 EXT_vertex_array
255 EXT_vertex_array_bgra
256 EXT_vertex_attrib_64bit
257 EXT_vertex_shader
258 EXT_vertex_weighting
259 EXT_x11_sync_object

247 GREMEDY_frame_terminator
248 GREMEDY_string_marker
260 GREMEDY_frame_terminator
261 GREMEDY_string_marker

249 HP_convolution_border_modes
250 HP_image_transform
251 HP_occlusion_test
252 HP_texture_lighting
262 HP_convolution_border_modes
263 HP_image_transform
264 HP_occlusion_test
265 HP_texture_lighting

253 IBM_cull_vertex
254 IBM_multimode_draw_arrays
255 IBM_rasterpos_clip
256 IBM_static_data
257 IBM_texture_mirrored_repeat
258 IBM_vertex_array_lists
266 IBM_cull_vertex
267 IBM_multimode_draw_arrays
268 IBM_rasterpos_clip
269 IBM_static_data
270 IBM_texture_mirrored_repeat
271 IBM_vertex_array_lists

259 INGR_color_clamp
260 INGR_interlace_read
272 INGR_color_clamp
273 INGR_interlace_read

261 INTEL_parallel_arrays
262 INTEL_texture_scissor
274 INTEL_parallel_arrays
275 INTEL_texture_scissor

263 KTX_buffer_region
276 KTX_buffer_region

264 MESAX_texture_stack
277 MESAX_texture_stack

265 MESA_pack_invert
266 MESA_resize_buffers
267 MESA_window_pos
268 MESA_ycbcr_texture
278 MESA_pack_invert
279 MESA_resize_buffers
280 MESA_window_pos
281 MESA_ycbcr_texture

269 NVX_gpu_memory_info
282 NVX_gpu_memory_info

270 NV_blend_square
271 NV_conditional_render
272 NV_copy_depth_to_color
273 NV_copy_image
274 NV_depth_buffer_float
275 NV_depth_clamp
276 NV_depth_range_unclamped
277 NV_evaluators
278 NV_explicit_multisample
279 NV_fence
280 NV_float_buffer
281 NV_fog_distance
282 NV_fragment_program
283 NV_fragment_program2
284 NV_fragment_program4
285 NV_fragment_program_option
286 NV_framebuffer_multisample_coverage
287 NV_geometry_program4
288 NV_geometry_shader4
289 NV_gpu_program4
290 NV_gpu_program5
291 NV_gpu_program_fp64
292 NV_gpu_shader5
293 NV_half_float
294 NV_light_max_exponent
295 NV_multisample_coverage
296 NV_multisample_filter_hint
297 NV_occlusion_query
298 NV_packed_depth_stencil
299 NV_parameter_buffer_object
300 NV_parameter_buffer_object2
301 NV_pixel_data_range
302 NV_point_sprite
303 NV_present_video
304 NV_primitive_restart
305 NV_register_combiners
306 NV_register_combiners2
307 NV_shader_buffer_load
308 NV_tessellation_program5
309 NV_texgen_emboss
310 NV_texgen_reflection
311 NV_texture_barrier
312 NV_texture_compression_vtc
313 NV_texture_env_combine4
314 NV_texture_expand_normal
315 NV_texture_multisample
316 NV_texture_rectangle
317 NV_texture_shader
318 NV_texture_shader2
319 NV_texture_shader3
320 NV_transform_feedback
321 NV_transform_feedback2
322 NV_vdpau_interop
323 NV_vertex_array_range
324 NV_vertex_array_range2
325 NV_vertex_attrib_integer_64bit
326 NV_vertex_buffer_unified_memory
327 NV_vertex_program
328 NV_vertex_program1_1
329 NV_vertex_program2
330 NV_vertex_program2_option
331 NV_vertex_program3
332 NV_vertex_program4
333 NV_video_capture
283 NV_blend_square
284 NV_conditional_render
285 NV_copy_depth_to_color
286 NV_copy_image
287 NV_depth_buffer_float
288 NV_depth_clamp
289 NV_depth_range_unclamped
290 NV_evaluators
291 NV_explicit_multisample
292 NV_fence
293 NV_float_buffer
294 NV_fog_distance
295 NV_fragment_program
296 NV_fragment_program2
297 NV_fragment_program4
298 NV_fragment_program_option
299 NV_framebuffer_multisample_coverage
300 NV_geometry_program4
301 NV_geometry_shader4
302 NV_gpu_program4
303 NV_gpu_program5
304 NV_gpu_program_fp64
305 NV_gpu_shader5
306 NV_half_float
307 NV_light_max_exponent
308 NV_multisample_coverage
309 NV_multisample_filter_hint
310 NV_occlusion_query
311 NV_packed_depth_stencil
312 NV_parameter_buffer_object
313 NV_parameter_buffer_object2
314 NV_pixel_data_range
315 NV_point_sprite
316 NV_present_video
317 NV_primitive_restart
318 NV_register_combiners
319 NV_register_combiners2
320 NV_shader_buffer_load
321 NV_tessellation_program5
322 NV_texgen_emboss
323 NV_texgen_reflection
324 NV_texture_barrier
325 NV_texture_compression_vtc
326 NV_texture_env_combine4
327 NV_texture_expand_normal
328 NV_texture_multisample
329 NV_texture_rectangle
330 NV_texture_shader
331 NV_texture_shader2
332 NV_texture_shader3
333 NV_transform_feedback
334 NV_transform_feedback2
335 NV_vdpau_interop
336 NV_vertex_array_range
337 NV_vertex_array_range2
338 NV_vertex_attrib_integer_64bit
339 NV_vertex_buffer_unified_memory
340 NV_vertex_program
341 NV_vertex_program1_1
342 NV_vertex_program2
343 NV_vertex_program2_option
344 NV_vertex_program3
345 NV_vertex_program4
346 NV_video_capture

334 OES_byte_coordinates
335 OES_compressed_paletted_texture
336 OES_read_format
337 OES_single_precision
347 OES_byte_coordinates
348 OES_compressed_paletted_texture
349 OES_read_format
350 OES_single_precision

338 OML_interlace
339 OML_resample
340 OML_subsample
351 OML_interlace
352 OML_resample
353 OML_subsample

341 PGI_misc_hints
342 PGI_vertex_hints
354 PGI_misc_hints
355 PGI_vertex_hints

343 REND_screen_coordinates
356 REND_screen_coordinates

344 S3_s3tc
357 S3_s3tc

345 SGIS_color_range
346 SGIS_detail_texture
347 SGIS_fog_function
348 SGIS_generate_mipmap
349 SGIS_multisample
350 SGIS_pixel_texture
351 SGIS_point_line_texgen
352 SGIS_sharpen_texture
353 SGIS_texture4D
354 SGIS_texture_border_clamp
355 SGIS_texture_edge_clamp
356 SGIS_texture_filter4
357 SGIS_texture_lod
358 SGIS_texture_select
358 SGIS_color_range
359 SGIS_detail_texture
360 SGIS_fog_function
361 SGIS_generate_mipmap
362 SGIS_multisample
363 SGIS_pixel_texture
364 SGIS_point_line_texgen
365 SGIS_sharpen_texture
366 SGIS_texture4D
367 SGIS_texture_border_clamp
368 SGIS_texture_edge_clamp
369 SGIS_texture_filter4
370 SGIS_texture_lod
371 SGIS_texture_select

359 SGIX_async
360 SGIX_async_histogram
361 SGIX_async_pixel
362 SGIX_blend_alpha_minmax
363 SGIX_clipmap
364 SGIX_convolution_accuracy
365 SGIX_depth_texture
366 SGIX_flush_raster
367 SGIX_fog_offset
368 SGIX_fog_texture
369 SGIX_fragment_specular_lighting
370 SGIX_framezoom
371 SGIX_interlace
372 SGIX_ir_instrument1
373 SGIX_list_priority
374 SGIX_pixel_texture
375 SGIX_pixel_texture_bits
376 SGIX_reference_plane
377 SGIX_resample
378 SGIX_shadow
379 SGIX_shadow_ambient
380 SGIX_sprite
381 SGIX_tag_sample_buffer
382 SGIX_texture_add_env
383 SGIX_texture_coordinate_clamp
384 SGIX_texture_lod_bias
385 SGIX_texture_multi_buffer
386 SGIX_texture_range
387 SGIX_texture_scale_bias
388 SGIX_vertex_preclip
389 SGIX_vertex_preclip_hint
390 SGIX_ycrcb
372 SGIX_async
373 SGIX_async_histogram
374 SGIX_async_pixel
375 SGIX_blend_alpha_minmax
376 SGIX_clipmap
377 SGIX_convolution_accuracy
378 SGIX_depth_texture
379 SGIX_flush_raster
380 SGIX_fog_offset
381 SGIX_fog_texture
382 SGIX_fragment_specular_lighting
383 SGIX_framezoom
384 SGIX_interlace
385 SGIX_ir_instrument1
386 SGIX_list_priority
387 SGIX_pixel_texture
388 SGIX_pixel_texture_bits
389 SGIX_reference_plane
390 SGIX_resample
391 SGIX_shadow
392 SGIX_shadow_ambient
393 SGIX_sprite
394 SGIX_tag_sample_buffer
395 SGIX_texture_add_env
396 SGIX_texture_coordinate_clamp
397 SGIX_texture_lod_bias
398 SGIX_texture_multi_buffer
399 SGIX_texture_range
400 SGIX_texture_scale_bias
401 SGIX_vertex_preclip
402 SGIX_vertex_preclip_hint
403 SGIX_ycrcb

391 SGI_color_matrix
392 SGI_color_table
393 SGI_texture_color_table
404 SGI_color_matrix
405 SGI_color_table
406 SGI_texture_color_table

394 SUNX_constant_data
407 SUNX_constant_data

395 SUN_convolution_border_modes
396 SUN_global_alpha
397 SUN_mesh_array
398 SUN_read_video_pixels
399 SUN_slice_accum
400 SUN_triangle_list
401 SUN_vertex
408 SUN_convolution_border_modes
409 SUN_global_alpha
410 SUN_mesh_array
411 SUN_read_video_pixels
412 SUN_slice_accum
413 SUN_triangle_list
414 SUN_vertex

402 WIN_phong_shading
403 WIN_specular_fog
404 WIN_swap_hint
415 WIN_phong_shading
416 WIN_specular_fog
417 WIN_swap_hint
diff --git a/doc/glxew.html b/doc/glxew.html index ca9b8f4..84fcb9c 100644 --- a/doc/glxew.html +++ b/doc/glxew.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
+ + - - + @@ -132,39 +133,40 @@ width="88" height="32" border="0" alt="Support This Project"> --> + - - - - - - - - + + + + + + + + - - + + - - - - + + + + - - - - - - - + + + + + + + - - - - + + + + - - + +
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
25 MESA_pixmap_colormap
26 MESA_release_buffers
27 MESA_set_3dfx_mode
28 MESA_swap_control

28 NV_copy_image
29 NV_float_buffer
30 NV_multisample_coverage
31 NV_present_video
32 NV_swap_group
33 NV_vertex_array_range
34 NV_video_capture
35 NV_video_output
29 NV_copy_image
30 NV_float_buffer
31 NV_multisample_coverage
32 NV_present_video
33 NV_swap_group
34 NV_vertex_array_range
35 NV_video_capture
36 NV_video_output

36 OML_swap_method
37 OML_sync_control
37 OML_swap_method
38 OML_sync_control

38 SGIS_blended_overlay
39 SGIS_color_range
40 SGIS_multisample
41 SGIS_shared_multisample
39 SGIS_blended_overlay
40 SGIS_color_range
41 SGIS_multisample
42 SGIS_shared_multisample

42 SGIX_fbconfig
43 SGIX_hyperpipe
44 SGIX_pbuffer
45 SGIX_swap_barrier
46 SGIX_swap_group
47 SGIX_video_resize
48 SGIX_visual_select_group
43 SGIX_fbconfig
44 SGIX_hyperpipe
45 SGIX_pbuffer
46 SGIX_swap_barrier
47 SGIX_swap_group
48 SGIX_video_resize
49 SGIX_visual_select_group

49 SGI_cushion
50 SGI_make_current_read
51 SGI_swap_control
52 SGI_video_sync
50 SGI_cushion
51 SGI_make_current_read
52 SGI_swap_control
53 SGI_video_sync

53 SUN_get_transparent_index
54 SUN_video_resize
54 SUN_get_transparent_index
55 SUN_video_resize
diff --git a/doc/index.html b/doc/index.html index 464beab..fd8f412 100644 --- a/doc/index.html +++ b/doc/index.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
+ + - - + diff --git a/doc/install.html b/doc/install.html index b90780b..45811c9 100644 --- a/doc/install.html +++ b/doc/install.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
+ + - - + diff --git a/doc/log.html b/doc/log.html index 6c83af2..aa6ee3e 100644 --- a/doc/log.html +++ b/doc/log.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE. --> - + From 4a5f85e49034c7c3364dc2658040dc18cb8eed71 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Fri, 26 Aug 2011 21:11:20 -0500 Subject: [PATCH 13/14] Documentation updates for GLEW 1.7.0 release --- auto/doc/index.html | 17 ++++++++-------- auto/doc/log.html | 42 ++++++++++++++++++++++++++++++++++++++++ auto/src/header.html | 4 ++-- doc/advanced.html | 4 ++-- doc/basic.html | 4 ++-- doc/build.html | 4 ++-- doc/credits.html | 4 ++-- doc/glew.html | 4 ++-- doc/glxew.html | 4 ++-- doc/index.html | 21 ++++++++++---------- doc/install.html | 4 ++-- doc/log.html | 46 ++++++++++++++++++++++++++++++++++++++++++-- doc/wglew.html | 4 ++-- 13 files changed, 124 insertions(+), 38 deletions(-) diff --git a/auto/doc/index.html b/auto/doc/index.html index 8248e17..b5807b4 100644 --- a/auto/doc/index.html +++ b/auto/doc/index.html @@ -12,8 +12,8 @@ Mac OS X, FreeBSD, Irix, and Solaris.

GLEW is distributed as source and precompiled binaries. The latest release is -1.6.0 -[04-27-11]: +1.7.0 +[08-26-11]:

@@ -27,8 +27,8 @@ as source and precompiled binaries. The latest release is
+ZIP |  +TGZ @@ -36,8 +36,8 @@ as source and precompiled binaries. The latest release is @@ -54,7 +54,7 @@ An up-to-date copy is also available from the OpenGL extensions @@ -64,10 +64,11 @@ The latest release contains support for OpenGL 3.3, OpenGL 4.1 and the following

News

    +
  • [08-26-11] GLEW 1.7.0 adds support for OpenGL 4.2, new extensions, fixes bugs
  • [04-27-11] GLEW 1.6.0 fixes minor bugs and adds eight new extensions
  • [01-31-11] GLEW 1.5.8 fixes minor bugs and adds two new extensions
  • [11-03-10] GLEW 1.5.7 fixes minor bugs and adds one new extension
  • -
  • [09-07-10] GLEW 1.5.6 adds suport for OpenGL 4.1, fixes bugs
  • +
  • [09-07-10] GLEW 1.5.6 adds support for OpenGL 4.1, fixes bugs
  • [07-13-10] GLEW 1.5.5 fixes minor bugs and adds new extensions
  • [04-21-10] GLEW 1.5.4 adds support for OpenGL 3.3, OpenGL 4.0 and new extensions, fixes bugs
  • [02-28-10] GLEW 1.5.3 fixes minor bugs and adds three new extensions
  • diff --git a/auto/doc/log.html b/auto/doc/log.html index e75c565..9366f6e 100644 --- a/auto/doc/log.html +++ b/auto/doc/log.html @@ -1,5 +1,47 @@

    Change Log

    +
    +
      +
    • 1.7.0 [08-26-11] +
        +
      • New features: +
          +
        • Support for OpenGL 4.2 +
        +
      • New extensions: +
          +
        • GL_AMD_multi_draw_indirect +
        • GL_ARB_base_instance +
        • GL_ARB_compressed_texture_pixel_storage +
        • GL_ARB_conservative_depth +
        • GL_ARB_internalformat_query +
        • GL_ARB_map_buffer_alignment +
        • GL_ARB_shader_atomic_counters +
        • GL_ARB_shader_image_load_store +
        • GL_ARB_shading_language_420pack +
        • GL_ARB_shading_language_packing +
        • GL_ARB_texture_storage +
        • GL_ARB_transform_feedback_instanced +
        • GL_EXT_framebuffer_multisample_blit_scaled +
        • GL_NV_path_rendering +
        • GL_NV_path_rendering +
        • GLX_MESA_swap_control +
        +
      • Bug fixes: +
          +
        • const qualifiers for GL 1.4 MultiDrawArrays, MultiDrawElements +
        • Add glGetGraphicsResetStatusARB to GL_ARB_robustness +
        • Remove EXT suffix from GL_KTX_buffer_region entry points +
        • Solaris needs inttypes.h +
        • Add ERROR_INVALID_VERSION_ARB and ERROR_INVALID_PROFILE_ARB to WGL_ARB_create_context +
        • Add GLX_MESA_swap_control +
        • Set -install_name for OSX +
        • Add 64-bit darwin build option (SYSTEM=darwin_x86-64) +
        • Add GL_NV_path_rendering +
        +
      +
    +
    • 1.6.0 [04-27-11] diff --git a/auto/src/header.html b/auto/src/header.html index 5fa4911..5721c72 100644 --- a/auto/src/header.html +++ b/auto/src/header.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
+ + - - + diff --git a/doc/wglew.html b/doc/wglew.html index b913161..0800b5e 100644 --- a/doc/wglew.html +++ b/doc/wglew.html @@ -53,9 +53,10 @@ THE POSSIBILITY OF SUCH DAMAGE.
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
+ + - - + From cc286a1154ad810b5e2e3e1fc018044a2cff7cb7 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Thu, 25 Aug 2011 08:56:13 -0500 Subject: [PATCH 11/14] Add GL_NV_path_rendering to auto/core until it appears on opengl.org --- auto/core/GL_NV_path_rendering | 178 ++++++++++++++++++++++++++++ doc/glew.html | 209 +++++++++++++++++---------------- 2 files changed, 283 insertions(+), 104 deletions(-) create mode 100644 auto/core/GL_NV_path_rendering diff --git a/auto/core/GL_NV_path_rendering b/auto/core/GL_NV_path_rendering new file mode 100644 index 0000000..9f36b6e --- /dev/null +++ b/auto/core/GL_NV_path_rendering @@ -0,0 +1,178 @@ +GL_NV_path_rendering +http://developer.download.nvidia.com/assets/gamedev/files/GL_NV_path_rendering.txt +GL_NV_path_rendering + GL_CLOSE_PATH_NV 0x00 + GL_BOLD_BIT_NV 0x01 + GL_GLYPH_WIDTH_BIT_NV 0x01 + GL_MOVE_TO_NV 0x02 + GL_GLYPH_HEIGHT_BIT_NV 0x02 + GL_ITALIC_BIT_NV 0x02 + GL_RELATIVE_MOVE_TO_NV 0x03 + GL_LINE_TO_NV 0x04 + GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 + GL_RELATIVE_LINE_TO_NV 0x05 + GL_HORIZONTAL_LINE_TO_NV 0x06 + GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 + GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 + GL_VERTICAL_LINE_TO_NV 0x08 + GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 + GL_QUADRATIC_CURVE_TO_NV 0x0A + GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B + GL_CUBIC_CURVE_TO_NV 0x0C + GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D + GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E + GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F + GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 + GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 + GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 + GL_SMALL_CCW_ARC_TO_NV 0x12 + GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 + GL_SMALL_CW_ARC_TO_NV 0x14 + GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 + GL_LARGE_CCW_ARC_TO_NV 0x16 + GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 + GL_LARGE_CW_ARC_TO_NV 0x18 + GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 + GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 + GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 + GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 + GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 + GL_CIRCULAR_CW_ARC_TO_NV 0xFA + GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC + GL_ARC_TO_NV 0xFE + GL_RELATIVE_ARC_TO_NV 0xFF + GL_GLYPH_HAS_KERNING_NV 0x100 + GL_PRIMARY_COLOR_NV 0x852C + GL_SECONDARY_COLOR_NV 0x852D + GL_PRIMARY_COLOR 0x8577 + GL_PATH_FORMAT_SVG_NV 0x9070 + GL_PATH_FORMAT_PS_NV 0x9071 + GL_STANDARD_FONT_NAME_NV 0x9072 + GL_SYSTEM_FONT_NAME_NV 0x9073 + GL_FILE_NAME_NV 0x9074 + GL_PATH_STROKE_WIDTH_NV 0x9075 + GL_PATH_END_CAPS_NV 0x9076 + GL_PATH_INITIAL_END_CAP_NV 0x9077 + GL_PATH_TERMINAL_END_CAP_NV 0x9078 + GL_PATH_JOIN_STYLE_NV 0x9079 + GL_PATH_MITER_LIMIT_NV 0x907A + GL_PATH_DASH_CAPS_NV 0x907B + GL_PATH_INITIAL_DASH_CAP_NV 0x907C + GL_PATH_TERMINAL_DASH_CAP_NV 0x907D + GL_PATH_DASH_OFFSET_NV 0x907E + GL_PATH_CLIENT_LENGTH_NV 0x907F + GL_PATH_FILL_MODE_NV 0x9080 + GL_PATH_FILL_MASK_NV 0x9081 + GL_PATH_FILL_COVER_MODE_NV 0x9082 + GL_PATH_STROKE_COVER_MODE_NV 0x9083 + GL_PATH_STROKE_MASK_NV 0x9084 + GL_COUNT_UP_NV 0x9088 + GL_COUNT_DOWN_NV 0x9089 + GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A + GL_CONVEX_HULL_NV 0x908B + GL_BOUNDING_BOX_NV 0x908D + GL_TRANSLATE_X_NV 0x908E + GL_TRANSLATE_Y_NV 0x908F + GL_TRANSLATE_2D_NV 0x9090 + GL_TRANSLATE_3D_NV 0x9091 + GL_AFFINE_2D_NV 0x9092 + GL_AFFINE_3D_NV 0x9094 + GL_TRANSPOSE_AFFINE_2D_NV 0x9096 + GL_TRANSPOSE_AFFINE_3D_NV 0x9098 + GL_UTF8_NV 0x909A + GL_UTF16_NV 0x909B + GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C + GL_PATH_COMMAND_COUNT_NV 0x909D + GL_PATH_COORD_COUNT_NV 0x909E + GL_PATH_DASH_ARRAY_COUNT_NV 0x909F + GL_PATH_COMPUTED_LENGTH_NV 0x90A0 + GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 + GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 + GL_SQUARE_NV 0x90A3 + GL_ROUND_NV 0x90A4 + GL_TRIANGULAR_NV 0x90A5 + GL_BEVEL_NV 0x90A6 + GL_MITER_REVERT_NV 0x90A7 + GL_MITER_TRUNCATE_NV 0x90A8 + GL_SKIP_MISSING_GLYPH_NV 0x90A9 + GL_USE_MISSING_GLYPH_NV 0x90AA + GL_PATH_ERROR_POSITION_NV 0x90AB + GL_PATH_FOG_GEN_MODE_NV 0x90AC + GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD + GL_ADJACENT_PAIRS_NV 0x90AE + GL_FIRST_TO_REST_NV 0x90AF + GL_PATH_GEN_MODE_NV 0x90B0 + GL_PATH_GEN_COEFF_NV 0x90B1 + GL_PATH_GEN_COLOR_FORMAT_NV 0x90B2 + GL_PATH_GEN_COMPONENTS_NV 0x90B3 + GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 + GL_MOVE_TO_RESETS_NV 0x90B5 + GL_MOVE_TO_CONTINUES_NV 0x90B6 + GL_PATH_STENCIL_FUNC_NV 0x90B7 + GL_PATH_STENCIL_REF_NV 0x90B8 + GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 + GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD + GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE + GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF + GL_FONT_X_MIN_BOUNDS_NV 0x00010000 + GL_FONT_Y_MIN_BOUNDS_NV 0x00020000 + GL_FONT_X_MAX_BOUNDS_NV 0x00040000 + GL_FONT_Y_MAX_BOUNDS_NV 0x00080000 + GL_FONT_UNITS_PER_EM_NV 0x00100000 + GL_FONT_ASCENDER_NV 0x00200000 + GL_FONT_DESCENDER_NV 0x00400000 + GL_FONT_HEIGHT_NV 0x00800000 + GL_FONT_MAX_ADVANCE_WIDTH_NV 0x01000000 + GL_FONT_MAX_ADVANCE_HEIGHT_NV 0x02000000 + GL_FONT_UNDERLINE_POSITION_NV 0x04000000 + GL_FONT_UNDERLINE_THICKNESS_NV 0x08000000 + GL_FONT_HAS_KERNING_NV 0x10000000 + void glCopyPathNV (GLuint resultPath, GLuint srcPath) + void glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues) + void glCoverFillPathNV (GLuint path, GLenum coverMode) + void glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues) + void glCoverStrokePathNV (GLuint name, GLenum coverMode) + void glDeletePathsNV (GLuint path, GLsizei range) + GLuint glGenPathsNV (GLsizei range) + void glGetPathColorGenfvNV (GLenum color, GLenum pname, GLfloat* value) + void glGetPathColorGenivNV (GLenum color, GLenum pname, GLint* value) + void glGetPathCommandsNV (GLuint name, GLubyte* commands) + void glGetPathCoordsNV (GLuint name, GLfloat* coords) + void glGetPathDashArrayNV (GLuint name, GLfloat* dashArray) + GLfloat glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments) + void glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint fistPathName, GLsizei numPaths, GLsizei stride, GLfloat* metrics) + void glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLsizei stride, GLfloat *metrics) + void glGetPathParameterfvNV (GLuint name, GLenum param, GLfloat* value) + void glGetPathParameterivNV (GLuint name, GLenum param, GLint* value) + void glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing) + void glGetPathTexGenfvNV (GLenum texCoordSet, GLenum pname, GLfloat* value) + void glGetPathTexGenivNV (GLenum texCoordSet, GLenum pname, GLint* value) + void glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight) + GLboolean glIsPathNV (GLuint path) + GLboolean glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y) + GLboolean glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y) + void glPathColorGenNV (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat* coeffs) + void glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte* commands, GLsizei numCoords, GLenum coordType, const GLvoid*coords) + void glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void* coords) + void glPathCoverDepthFuncNV (GLenum zfunc) + void glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat* dashArray) + void glPathFogGenNV (GLenum genMode) + void glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void* fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale) + void glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void* fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const GLvoid*charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale) + void glPathParameterfNV (GLuint path, GLenum pname, GLfloat value) + void glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat* value) + void glPathParameteriNV (GLuint path, GLenum pname, GLint value) + void glPathParameterivNV (GLuint path, GLenum pname, const GLint* value) + void glPathStencilDepthOffsetNV (GLfloat factor, GLint units) + void glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask) + void glPathStringNV (GLuint path, GLenum format, GLsizei length, const void* pathString) + void glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte* commands, GLsizei numCoords, GLenum coordType, const GLvoid*coords) + void glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void* coords) + void glPathTexGenNV (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat* coeffs) + GLboolean glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat* x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY) + void glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues) + void glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask) + void glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues) + void glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask) + void glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat* transformValues) + void glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint paths[], const GLfloat weights[]) diff --git a/doc/glew.html b/doc/glew.html index ae2adaf..5193a79 100644 --- a/doc/glew.html +++ b/doc/glew.html @@ -429,121 +429,122 @@ width="88" height="32" border="0" alt="Support This Project"> --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - + + + - - + + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - - - - - - - + + + + + + + - - - + + +
Download
Usage
Building
Installation
Basic Usage
Advanced Usage
Source Generation
Credits & Copyright
Change Log
Project Page
311 NV_packed_depth_stencil
312 NV_parameter_buffer_object
313 NV_parameter_buffer_object2
314 NV_pixel_data_range
315 NV_point_sprite
316 NV_present_video
317 NV_primitive_restart
318 NV_register_combiners
319 NV_register_combiners2
320 NV_shader_buffer_load
321 NV_tessellation_program5
322 NV_texgen_emboss
323 NV_texgen_reflection
324 NV_texture_barrier
325 NV_texture_compression_vtc
326 NV_texture_env_combine4
327 NV_texture_expand_normal
328 NV_texture_multisample
329 NV_texture_rectangle
330 NV_texture_shader
331 NV_texture_shader2
332 NV_texture_shader3
333 NV_transform_feedback
334 NV_transform_feedback2
335 NV_vdpau_interop
336 NV_vertex_array_range
337 NV_vertex_array_range2
338 NV_vertex_attrib_integer_64bit
339 NV_vertex_buffer_unified_memory
340 NV_vertex_program
341 NV_vertex_program1_1
342 NV_vertex_program2
343 NV_vertex_program2_option
344 NV_vertex_program3
345 NV_vertex_program4
346 NV_video_capture
314 NV_path_rendering
315 NV_pixel_data_range
316 NV_point_sprite
317 NV_present_video
318 NV_primitive_restart
319 NV_register_combiners
320 NV_register_combiners2
321 NV_shader_buffer_load
322 NV_tessellation_program5
323 NV_texgen_emboss
324 NV_texgen_reflection
325 NV_texture_barrier
326 NV_texture_compression_vtc
327 NV_texture_env_combine4
328 NV_texture_expand_normal
329 NV_texture_multisample
330 NV_texture_rectangle
331 NV_texture_shader
332 NV_texture_shader2
333 NV_texture_shader3
334 NV_transform_feedback
335 NV_transform_feedback2
336 NV_vdpau_interop
337 NV_vertex_array_range
338 NV_vertex_array_range2
339 NV_vertex_attrib_integer_64bit
340 NV_vertex_buffer_unified_memory
341 NV_vertex_program
342 NV_vertex_program1_1
343 NV_vertex_program2
344 NV_vertex_program2_option
345 NV_vertex_program3
346 NV_vertex_program4
347 NV_video_capture

347 OES_byte_coordinates
348 OES_compressed_paletted_texture
349 OES_read_format
350 OES_single_precision
348 OES_byte_coordinates
349 OES_compressed_paletted_texture
350 OES_read_format
351 OES_single_precision

351 OML_interlace
352 OML_resample
353 OML_subsample
352 OML_interlace
353 OML_resample
354 OML_subsample

354 PGI_misc_hints
355 PGI_vertex_hints
355 PGI_misc_hints
356 PGI_vertex_hints

356 REND_screen_coordinates
357 REND_screen_coordinates

357 S3_s3tc
358 S3_s3tc

358 SGIS_color_range
359 SGIS_detail_texture
360 SGIS_fog_function
361 SGIS_generate_mipmap
362 SGIS_multisample
363 SGIS_pixel_texture
364 SGIS_point_line_texgen
365 SGIS_sharpen_texture
366 SGIS_texture4D
367 SGIS_texture_border_clamp
368 SGIS_texture_edge_clamp
369 SGIS_texture_filter4
370 SGIS_texture_lod
371 SGIS_texture_select
359 SGIS_color_range
360 SGIS_detail_texture
361 SGIS_fog_function
362 SGIS_generate_mipmap
363 SGIS_multisample
364 SGIS_pixel_texture
365 SGIS_point_line_texgen
366 SGIS_sharpen_texture
367 SGIS_texture4D
368 SGIS_texture_border_clamp
369 SGIS_texture_edge_clamp
370 SGIS_texture_filter4
371 SGIS_texture_lod
372 SGIS_texture_select

372 SGIX_async
373 SGIX_async_histogram
374 SGIX_async_pixel
375 SGIX_blend_alpha_minmax
376 SGIX_clipmap
377 SGIX_convolution_accuracy
378 SGIX_depth_texture
379 SGIX_flush_raster
380 SGIX_fog_offset
381 SGIX_fog_texture
382 SGIX_fragment_specular_lighting
383 SGIX_framezoom
384 SGIX_interlace
385 SGIX_ir_instrument1
386 SGIX_list_priority
387 SGIX_pixel_texture
388 SGIX_pixel_texture_bits
389 SGIX_reference_plane
390 SGIX_resample
391 SGIX_shadow
392 SGIX_shadow_ambient
393 SGIX_sprite
394 SGIX_tag_sample_buffer
395 SGIX_texture_add_env
396 SGIX_texture_coordinate_clamp
397 SGIX_texture_lod_bias
398 SGIX_texture_multi_buffer
399 SGIX_texture_range
400 SGIX_texture_scale_bias
401 SGIX_vertex_preclip
402 SGIX_vertex_preclip_hint
403 SGIX_ycrcb
373 SGIX_async
374 SGIX_async_histogram
375 SGIX_async_pixel
376 SGIX_blend_alpha_minmax
377 SGIX_clipmap
378 SGIX_convolution_accuracy
379 SGIX_depth_texture
380 SGIX_flush_raster
381 SGIX_fog_offset
382 SGIX_fog_texture
383 SGIX_fragment_specular_lighting
384 SGIX_framezoom
385 SGIX_interlace
386 SGIX_ir_instrument1
387 SGIX_list_priority
388 SGIX_pixel_texture
389 SGIX_pixel_texture_bits
390 SGIX_reference_plane
391 SGIX_resample
392 SGIX_shadow
393 SGIX_shadow_ambient
394 SGIX_sprite
395 SGIX_tag_sample_buffer
396 SGIX_texture_add_env
397 SGIX_texture_coordinate_clamp
398 SGIX_texture_lod_bias
399 SGIX_texture_multi_buffer
400 SGIX_texture_range
401 SGIX_texture_scale_bias
402 SGIX_vertex_preclip
403 SGIX_vertex_preclip_hint
404 SGIX_ycrcb

404 SGI_color_matrix
405 SGI_color_table
406 SGI_texture_color_table
405 SGI_color_matrix
406 SGI_color_table
407 SGI_texture_color_table

407 SUNX_constant_data
408 SUNX_constant_data

408 SUN_convolution_border_modes
409 SUN_global_alpha
410 SUN_mesh_array
411 SUN_read_video_pixels
412 SUN_slice_accum
413 SUN_triangle_list
414 SUN_vertex
409 SUN_convolution_border_modes
410 SUN_global_alpha
411 SUN_mesh_array
412 SUN_read_video_pixels
413 SUN_slice_accum
414 SUN_triangle_list
415 SUN_vertex

415 WIN_phong_shading
416 WIN_specular_fog
417 WIN_swap_hint
416 WIN_phong_shading
417 WIN_specular_fog
418 WIN_swap_hint
From fcb39d65a5d2133d38f8ef6a6f27bfd3d4c8e399 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Thu, 25 Aug 2011 09:11:11 -0500 Subject: [PATCH 12/14] Documentation fixup for NV Path Rendering --- doc/glew.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/glew.html b/doc/glew.html index 5193a79..d8d447e 100644 --- a/doc/glew.html +++ b/doc/glew.html @@ -429,7 +429,7 @@ width="88" height="32" border="0" alt="Support This Project">
311 NV_packed_depth_stencil
312 NV_parameter_buffer_object
313 NV_parameter_buffer_object2
314 NV_path_rendering
314 NV_path_rendering
315 NV_pixel_data_range
316 NV_point_sprite
317 NV_present_video
Source -ZIP |  -TGZ
Binaries -Windows 32-bit |  -64-bit  +Windows 32-bit |  +64-bit 
- + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- +
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo diff --git a/doc/advanced.html b/doc/advanced.html index fd86603..33e5683 100644 --- a/doc/advanced.html +++ b/doc/advanced.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE. - + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- +
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo diff --git a/doc/basic.html b/doc/basic.html index f04f8d2..02fbe8f 100644 --- a/doc/basic.html +++ b/doc/basic.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE. - + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- +
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo diff --git a/doc/build.html b/doc/build.html index caa2804..5065820 100644 --- a/doc/build.html +++ b/doc/build.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE. - + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- +
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo diff --git a/doc/credits.html b/doc/credits.html index 7464dc1..8986646 100644 --- a/doc/credits.html +++ b/doc/credits.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE. - + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- +
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo diff --git a/doc/glew.html b/doc/glew.html index d8d447e..5ab633e 100644 --- a/doc/glew.html +++ b/doc/glew.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE. - + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- +
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo diff --git a/doc/glxew.html b/doc/glxew.html index 84fcb9c..1db7ff1 100644 --- a/doc/glxew.html +++ b/doc/glxew.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE. - + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- +
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo diff --git a/doc/index.html b/doc/index.html index fd8f412..c9e12bc 100644 --- a/doc/index.html +++ b/doc/index.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE. - + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- + +ZIP |  +TGZ @@ -135,8 +135,8 @@ as source and precompiled binaries. The latest release is @@ -153,7 +153,7 @@ An up-to-date copy is also available from the OpenGL extensions @@ -163,10 +163,11 @@ The latest release contains support for OpenGL 3.3, OpenGL 4.1 and the following

News

    +
  • [08-26-11] GLEW 1.7.0 adds support for OpenGL 4.2, new extensions, fixes bugs
  • [04-27-11] GLEW 1.6.0 fixes minor bugs and adds eight new extensions
  • [01-31-11] GLEW 1.5.8 fixes minor bugs and adds two new extensions
  • [11-03-10] GLEW 1.5.7 fixes minor bugs and adds one new extension
  • -
  • [09-07-10] GLEW 1.5.6 adds suport for OpenGL 4.1, fixes bugs
  • +
  • [09-07-10] GLEW 1.5.6 adds support for OpenGL 4.1, fixes bugs
  • [07-13-10] GLEW 1.5.5 fixes minor bugs and adds new extensions
  • [04-21-10] GLEW 1.5.4 adds support for OpenGL 3.3, OpenGL 4.0 and new extensions, fixes bugs
  • [02-28-10] GLEW 1.5.3 fixes minor bugs and adds three new extensions
  • diff --git a/doc/install.html b/doc/install.html index 45811c9..1c314a9 100644 --- a/doc/install.html +++ b/doc/install.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo @@ -111,8 +111,8 @@ Mac OS X, FreeBSD, Irix, and Solaris.

GLEW is distributed as source and precompiled binaries. The latest release is -1.6.0 -[04-27-11]: +1.7.0 +[08-26-11]:

@@ -126,8 +126,8 @@ as source and precompiled binaries. The latest release is
Source -ZIP |  -TGZ
Binaries -Windows 32-bit |  -64-bit  +Windows 32-bit |  +64-bit 
- + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- +
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo diff --git a/doc/log.html b/doc/log.html index aa6ee3e..0fa1485 100644 --- a/doc/log.html +++ b/doc/log.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE. - + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- + -->

Change Log

+
+
    +
  • 1.7.0 [08-26-11] +
      +
    • New features: +
        +
      • Support for OpenGL 4.2 +
      +
    • New extensions: +
        +
      • GL_AMD_multi_draw_indirect +
      • GL_ARB_base_instance +
      • GL_ARB_compressed_texture_pixel_storage +
      • GL_ARB_conservative_depth +
      • GL_ARB_internalformat_query +
      • GL_ARB_map_buffer_alignment +
      • GL_ARB_shader_atomic_counters +
      • GL_ARB_shader_image_load_store +
      • GL_ARB_shading_language_420pack +
      • GL_ARB_shading_language_packing +
      • GL_ARB_texture_storage +
      • GL_ARB_transform_feedback_instanced +
      • GL_EXT_framebuffer_multisample_blit_scaled +
      • GL_NV_path_rendering +
      • GL_NV_path_rendering +
      • GLX_MESA_swap_control +
      +
    • Bug fixes: +
        +
      • const qualifiers for GL 1.4 MultiDrawArrays, MultiDrawElements +
      • Add glGetGraphicsResetStatusARB to GL_ARB_robustness +
      • Remove EXT suffix from GL_KTX_buffer_region entry points +
      • Solaris needs inttypes.h +
      • Add ERROR_INVALID_VERSION_ARB and ERROR_INVALID_PROFILE_ARB to WGL_ARB_create_context +
      • Add GLX_MESA_swap_control +
      • Set -install_name for OSX +
      • Add 64-bit darwin build option (SYSTEM=darwin_x86-64) +
      • Add GL_NV_path_rendering +
      +
    +
+
  • 1.6.0 [04-27-11] diff --git a/doc/wglew.html b/doc/wglew.html index 0800b5e..4bf7c64 100644 --- a/doc/wglew.html +++ b/doc/wglew.html @@ -46,7 +46,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo @@ -99,6 +99,48 @@ width="88" height="32" border="0" alt="Support This Project">
- + @@ -71,7 +71,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
Latest Release: 1.6.0
Latest Release: 1.7.0

GLEW Logo

- +
Last Update: 04-27-11
Last Update: 08-26-11
OpenGL Logo From 4a5ff954b2b906377f64bf6f6172f8b76668738e Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Wed, 7 Sep 2011 22:55:24 -0500 Subject: [PATCH 14/14] GL_NV_path_rendering now on opengl.org, remove it from auto/core --- auto/core/GL_NV_path_rendering | 178 --------------------------------- 1 file changed, 178 deletions(-) delete mode 100644 auto/core/GL_NV_path_rendering diff --git a/auto/core/GL_NV_path_rendering b/auto/core/GL_NV_path_rendering deleted file mode 100644 index 9f36b6e..0000000 --- a/auto/core/GL_NV_path_rendering +++ /dev/null @@ -1,178 +0,0 @@ -GL_NV_path_rendering -http://developer.download.nvidia.com/assets/gamedev/files/GL_NV_path_rendering.txt -GL_NV_path_rendering - GL_CLOSE_PATH_NV 0x00 - GL_BOLD_BIT_NV 0x01 - GL_GLYPH_WIDTH_BIT_NV 0x01 - GL_MOVE_TO_NV 0x02 - GL_GLYPH_HEIGHT_BIT_NV 0x02 - GL_ITALIC_BIT_NV 0x02 - GL_RELATIVE_MOVE_TO_NV 0x03 - GL_LINE_TO_NV 0x04 - GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 - GL_RELATIVE_LINE_TO_NV 0x05 - GL_HORIZONTAL_LINE_TO_NV 0x06 - GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 - GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 - GL_VERTICAL_LINE_TO_NV 0x08 - GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 - GL_QUADRATIC_CURVE_TO_NV 0x0A - GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B - GL_CUBIC_CURVE_TO_NV 0x0C - GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D - GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E - GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F - GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 - GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 - GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 - GL_SMALL_CCW_ARC_TO_NV 0x12 - GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 - GL_SMALL_CW_ARC_TO_NV 0x14 - GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 - GL_LARGE_CCW_ARC_TO_NV 0x16 - GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 - GL_LARGE_CW_ARC_TO_NV 0x18 - GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 - GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 - GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 - GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 - GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 - GL_CIRCULAR_CW_ARC_TO_NV 0xFA - GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC - GL_ARC_TO_NV 0xFE - GL_RELATIVE_ARC_TO_NV 0xFF - GL_GLYPH_HAS_KERNING_NV 0x100 - GL_PRIMARY_COLOR_NV 0x852C - GL_SECONDARY_COLOR_NV 0x852D - GL_PRIMARY_COLOR 0x8577 - GL_PATH_FORMAT_SVG_NV 0x9070 - GL_PATH_FORMAT_PS_NV 0x9071 - GL_STANDARD_FONT_NAME_NV 0x9072 - GL_SYSTEM_FONT_NAME_NV 0x9073 - GL_FILE_NAME_NV 0x9074 - GL_PATH_STROKE_WIDTH_NV 0x9075 - GL_PATH_END_CAPS_NV 0x9076 - GL_PATH_INITIAL_END_CAP_NV 0x9077 - GL_PATH_TERMINAL_END_CAP_NV 0x9078 - GL_PATH_JOIN_STYLE_NV 0x9079 - GL_PATH_MITER_LIMIT_NV 0x907A - GL_PATH_DASH_CAPS_NV 0x907B - GL_PATH_INITIAL_DASH_CAP_NV 0x907C - GL_PATH_TERMINAL_DASH_CAP_NV 0x907D - GL_PATH_DASH_OFFSET_NV 0x907E - GL_PATH_CLIENT_LENGTH_NV 0x907F - GL_PATH_FILL_MODE_NV 0x9080 - GL_PATH_FILL_MASK_NV 0x9081 - GL_PATH_FILL_COVER_MODE_NV 0x9082 - GL_PATH_STROKE_COVER_MODE_NV 0x9083 - GL_PATH_STROKE_MASK_NV 0x9084 - GL_COUNT_UP_NV 0x9088 - GL_COUNT_DOWN_NV 0x9089 - GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A - GL_CONVEX_HULL_NV 0x908B - GL_BOUNDING_BOX_NV 0x908D - GL_TRANSLATE_X_NV 0x908E - GL_TRANSLATE_Y_NV 0x908F - GL_TRANSLATE_2D_NV 0x9090 - GL_TRANSLATE_3D_NV 0x9091 - GL_AFFINE_2D_NV 0x9092 - GL_AFFINE_3D_NV 0x9094 - GL_TRANSPOSE_AFFINE_2D_NV 0x9096 - GL_TRANSPOSE_AFFINE_3D_NV 0x9098 - GL_UTF8_NV 0x909A - GL_UTF16_NV 0x909B - GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C - GL_PATH_COMMAND_COUNT_NV 0x909D - GL_PATH_COORD_COUNT_NV 0x909E - GL_PATH_DASH_ARRAY_COUNT_NV 0x909F - GL_PATH_COMPUTED_LENGTH_NV 0x90A0 - GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 - GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 - GL_SQUARE_NV 0x90A3 - GL_ROUND_NV 0x90A4 - GL_TRIANGULAR_NV 0x90A5 - GL_BEVEL_NV 0x90A6 - GL_MITER_REVERT_NV 0x90A7 - GL_MITER_TRUNCATE_NV 0x90A8 - GL_SKIP_MISSING_GLYPH_NV 0x90A9 - GL_USE_MISSING_GLYPH_NV 0x90AA - GL_PATH_ERROR_POSITION_NV 0x90AB - GL_PATH_FOG_GEN_MODE_NV 0x90AC - GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD - GL_ADJACENT_PAIRS_NV 0x90AE - GL_FIRST_TO_REST_NV 0x90AF - GL_PATH_GEN_MODE_NV 0x90B0 - GL_PATH_GEN_COEFF_NV 0x90B1 - GL_PATH_GEN_COLOR_FORMAT_NV 0x90B2 - GL_PATH_GEN_COMPONENTS_NV 0x90B3 - GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 - GL_MOVE_TO_RESETS_NV 0x90B5 - GL_MOVE_TO_CONTINUES_NV 0x90B6 - GL_PATH_STENCIL_FUNC_NV 0x90B7 - GL_PATH_STENCIL_REF_NV 0x90B8 - GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 - GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD - GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE - GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF - GL_FONT_X_MIN_BOUNDS_NV 0x00010000 - GL_FONT_Y_MIN_BOUNDS_NV 0x00020000 - GL_FONT_X_MAX_BOUNDS_NV 0x00040000 - GL_FONT_Y_MAX_BOUNDS_NV 0x00080000 - GL_FONT_UNITS_PER_EM_NV 0x00100000 - GL_FONT_ASCENDER_NV 0x00200000 - GL_FONT_DESCENDER_NV 0x00400000 - GL_FONT_HEIGHT_NV 0x00800000 - GL_FONT_MAX_ADVANCE_WIDTH_NV 0x01000000 - GL_FONT_MAX_ADVANCE_HEIGHT_NV 0x02000000 - GL_FONT_UNDERLINE_POSITION_NV 0x04000000 - GL_FONT_UNDERLINE_THICKNESS_NV 0x08000000 - GL_FONT_HAS_KERNING_NV 0x10000000 - void glCopyPathNV (GLuint resultPath, GLuint srcPath) - void glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues) - void glCoverFillPathNV (GLuint path, GLenum coverMode) - void glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues) - void glCoverStrokePathNV (GLuint name, GLenum coverMode) - void glDeletePathsNV (GLuint path, GLsizei range) - GLuint glGenPathsNV (GLsizei range) - void glGetPathColorGenfvNV (GLenum color, GLenum pname, GLfloat* value) - void glGetPathColorGenivNV (GLenum color, GLenum pname, GLint* value) - void glGetPathCommandsNV (GLuint name, GLubyte* commands) - void glGetPathCoordsNV (GLuint name, GLfloat* coords) - void glGetPathDashArrayNV (GLuint name, GLfloat* dashArray) - GLfloat glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments) - void glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint fistPathName, GLsizei numPaths, GLsizei stride, GLfloat* metrics) - void glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLsizei stride, GLfloat *metrics) - void glGetPathParameterfvNV (GLuint name, GLenum param, GLfloat* value) - void glGetPathParameterivNV (GLuint name, GLenum param, GLint* value) - void glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing) - void glGetPathTexGenfvNV (GLenum texCoordSet, GLenum pname, GLfloat* value) - void glGetPathTexGenivNV (GLenum texCoordSet, GLenum pname, GLint* value) - void glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight) - GLboolean glIsPathNV (GLuint path) - GLboolean glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y) - GLboolean glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y) - void glPathColorGenNV (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat* coeffs) - void glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte* commands, GLsizei numCoords, GLenum coordType, const GLvoid*coords) - void glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void* coords) - void glPathCoverDepthFuncNV (GLenum zfunc) - void glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat* dashArray) - void glPathFogGenNV (GLenum genMode) - void glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void* fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale) - void glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void* fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const GLvoid*charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale) - void glPathParameterfNV (GLuint path, GLenum pname, GLfloat value) - void glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat* value) - void glPathParameteriNV (GLuint path, GLenum pname, GLint value) - void glPathParameterivNV (GLuint path, GLenum pname, const GLint* value) - void glPathStencilDepthOffsetNV (GLfloat factor, GLint units) - void glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask) - void glPathStringNV (GLuint path, GLenum format, GLsizei length, const void* pathString) - void glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte* commands, GLsizei numCoords, GLenum coordType, const GLvoid*coords) - void glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void* coords) - void glPathTexGenNV (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat* coeffs) - GLboolean glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat* x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY) - void glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues) - void glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask) - void glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void* paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues) - void glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask) - void glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat* transformValues) - void glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint paths[], const GLfloat weights[])