bug fixes and added GL_NV_depth_range_unclamped

git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@495 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
ikits 2007-03-19 02:36:29 +00:00
parent 865603cd1f
commit 3d4da5b2a7
6 changed files with 18 additions and 8 deletions

View File

@ -170,6 +170,12 @@ EOT
void glMultTransposeMatrixdARB (GLdouble m[16]) void glMultTransposeMatrixdARB (GLdouble m[16])
EOT EOT
# add missing tokens to GL_EXT_framebuffer_multisample
cat >> $1/GL_EXT_framebuffer_multisample <<EOT
GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56
GL_MAX_SAMPLES_EXT 0x8D57
EOT
# fix const correctness in GL_ARB_shader_objects # fix const correctness in GL_ARB_shader_objects
# perl -e 's/(.+glUniform.*(fv|iv).+)(GLfloat\*.+|GLint\*.+)/\1const \3/;' -pi $1/GL_ARB_shader_objects # perl -e 's/(.+glUniform.*(fv|iv).+)(GLfloat\*.+|GLint\*.+)/\1const \3/;' -pi $1/GL_ARB_shader_objects

View File

@ -1,4 +1,4 @@
GL_SGIX_hyperpipe GLX_SGIX_hyperpipe
http://oss.sgi.com/projects/ogl-sample/registry/SGIX/hyperpipe_group.txt http://oss.sgi.com/projects/ogl-sample/registry/SGIX/hyperpipe_group.txt
GLX_HYPERPIPE_ID_SGIX 0x8030 GLX_HYPERPIPE_ID_SGIX 0x8030
GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX 80 GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX 80

View File

@ -1,4 +1,4 @@
GL_EXT_gpu_program_parameters GL_EXT_gpu_program_parameters
http://developer.download.nvidia.com/opengl/specs/GL_EXT_gpu_program_parameters.txt http://developer.download.nvidia.com/opengl/specs/GL_EXT_gpu_program_parameters.txt
void glProgramEnvParameters4fv (GLenum target, GLuint index, GLsizei count, const GLfloat *params) void glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params)
void glProgramLocalParameters4fv (GLenum target, GLuint index, GLsizei count, const GLfloat *params) void glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params)

View File

@ -0,0 +1,6 @@
GL_NV_depth_range_unclamped
GL_SAMPLE_COUNT_BITS_NV 0x8864
GL_CURRENT_SAMPLE_COUNT_QUERY_NV 0x8865
GL_QUERY_RESULT_NV 0x8866
GL_QUERY_RESULT_AVAILABLE_NV 0x8867
GL_SAMPLE_COUNT_NV 0x8914

View File

@ -2,8 +2,6 @@ GL_NV_framebuffer_multisample_coverage
http://developer.download.nvidia.com/opengl/specs/GL_NV_framebuffer_multisample_coverage.txt http://developer.download.nvidia.com/opengl/specs/GL_NV_framebuffer_multisample_coverage.txt
GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB
GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10 GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10
GL_MAX_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8D57 GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11
GL_MAX_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E11 GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12
GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12
GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E13
void glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height) void glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height)

View File

@ -165,7 +165,7 @@ typedef float GLclampf;
typedef double GLdouble; typedef double GLdouble;
typedef double GLclampd; typedef double GLclampd;
typedef void GLvoid; typedef void GLvoid;
#if defined(_MSC_VER) && _MSC_VER < 1400 #if defined(_MSC_VER) && _MSC_VER < 1310
# ifdef _WIN64 # ifdef _WIN64
typedef __int64 GLint64EXT; typedef __int64 GLint64EXT;
typedef unsigned __int64 GLuint64EXT; typedef unsigned __int64 GLuint64EXT;