summaryrefslogtreecommitdiff
path: root/include/GL/glext.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-08-22 21:10:37 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-08-22 21:10:37 +0000
commitfb657ef91da29120ff65580f0b27914752273025 (patch)
tree6ec98ccdab883f999ad0385132ca0080eef7743a /include/GL/glext.h
parent8fefafa2200d3ea44ec46592b190654a10685b46 (diff)
added glXAllocate/FreeMemoryNV()
Diffstat (limited to 'include/GL/glext.h')
-rw-r--r--include/GL/glext.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/include/GL/glext.h b/include/GL/glext.h
index fc9cb3c176d..f842f69de3b 100644
--- a/include/GL/glext.h
+++ b/include/GL/glext.h
@@ -49,9 +49,9 @@ extern "C" {
/*************************************************************/
/* Header file version number, required by OpenGL ABI for Linux */
-/* glext.h last updated 2002/05/30 */
+/* glext.h last updated 2002/07/18 */
/* Current version at http://oss.sgi.com/projects/ogl-sample/registry/ */
-#define GL_GLEXT_VERSION 15
+#define GL_GLEXT_VERSION 16
#ifndef GL_VERSION_1_2
#define GL_UNSIGNED_BYTE_3_3_2 0x8032
@@ -2289,6 +2289,11 @@ extern "C" {
#ifndef GL_EXT_shadow_funcs
#endif
+#ifndef GL_EXT_stencil_two_side
+#define GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910
+#define GL_ACTIVE_STENCIL_FACE_EXT 0x8911
+#endif
+
/*************************************************************/
@@ -4642,6 +4647,14 @@ typedef void (APIENTRY * PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint
#define GL_EXT_shadow_funcs 1
#endif
+#ifndef GL_EXT_stencil_two_side
+#define GL_EXT_stencil_two_side 1
+#ifdef GL_GLEXT_PROTOTYPES
+GLAPI void APIENTRY glActiveStencilFaceEXT (GLenum);
+#endif /* GL_GLEXT_PROTOTYPES */
+typedef void (APIENTRY * PFNGLACTIVESTENCILFACEEXTPROC) (GLenum face);
+#endif
+
#ifdef __cplusplus
}