mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-22 13:55:07 +00:00
Blacklist ARB/separate_shader_objects and ARB/viewport_array for now, fix build breaks.
git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@613 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
parent
974063f133
commit
043de344c2
@ -70,6 +70,10 @@ my %typemap = (
|
||||
|
||||
DEBUGPROCAMD => "GLDEBUGPROCAMD",
|
||||
|
||||
# ARB_debug_output
|
||||
|
||||
DEBUGPROCARB => "GLDEBUGPROCARB",
|
||||
|
||||
vdpauSurfaceNV => "GLvdpauSurfaceNV",
|
||||
|
||||
# GLX 1.3 defines new types which might not be available at compile time
|
||||
|
@ -13,3 +13,5 @@ SGIX/hyperpipe_group.txt
|
||||
OES/OES_fixed_point.txt
|
||||
OES/OES_query_matrix.txt
|
||||
NV/video_capture.txt
|
||||
ARB/separate_shader_objects.txt
|
||||
ARB/viewport_array.txt
|
||||
|
29
auto/core/GL_ARB_robustness
Normal file
29
auto/core/GL_ARB_robustness
Normal file
@ -0,0 +1,29 @@
|
||||
GL_ARB_robustness
|
||||
http://www.opengl.org/registry/specs/ARB/robustness.txt
|
||||
GL_ARB_robustness
|
||||
GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB 0x00000004
|
||||
GL_LOSE_CONTEXT_ON_RESET_ARB 0x8252
|
||||
GL_GUILTY_CONTEXT_RESET_ARB 0x8253
|
||||
GL_INNOCENT_CONTEXT_RESET_ARB 0x8254
|
||||
GL_UNKNOWN_CONTEXT_RESET_ARB 0x8255
|
||||
GL_RESET_NOTIFICATION_STRATEGY_ARB 0x8256
|
||||
GL_NO_RESET_NOTIFICATION_ARB 0x8261
|
||||
void glGetnColorTableARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void* table)
|
||||
void glGetnCompressedTexImageARB (GLenum target, GLint lod, GLsizei bufSize, void* img)
|
||||
void glGetnConvolutionFilterARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void* image)
|
||||
void glGetnHistogramARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void* values)
|
||||
void glGetnMapdvARB (GLenum target, GLenum query, GLsizei bufSize, GLdouble* v)
|
||||
void glGetnMapfvARB (GLenum target, GLenum query, GLsizei bufSize, GLfloat* v)
|
||||
void glGetnMapivARB (GLenum target, GLenum query, GLsizei bufSize, GLint* v)
|
||||
void glGetnMinmaxARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void* values)
|
||||
void glGetnPixelMapfvARB (GLenum map, GLsizei bufSize, GLfloat* values)
|
||||
void glGetnPixelMapuivARB (GLenum map, GLsizei bufSize, GLuint* values)
|
||||
void glGetnPixelMapusvARB (GLenum map, GLsizei bufSize, GLushort* values)
|
||||
void glGetnPolygonStippleARB (GLsizei bufSize, GLubyte* pattern)
|
||||
void glGetnSeparableFilterARB (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void* row, GLsizei columnBufSize, GLvoid*column, GLvoid*span)
|
||||
void glGetnTexImageARB (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void* img)
|
||||
void glGetnUniformdvARB (GLuint program, GLint location, GLsizei bufSize, GLdouble* params)
|
||||
void glGetnUniformfvARB (GLuint program, GLint location, GLsizei bufSize, GLfloat* params)
|
||||
void glGetnUniformivARB (GLuint program, GLint location, GLsizei bufSize, GLint* params)
|
||||
void glGetnUniformuivARB (GLuint program, GLint location, GLsizei bufSize, GLuint* params)
|
||||
void glReadnPixelsARB (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void* data)
|
19
auto/core/GL_ARB_vertex_attrib_64bit
Normal file
19
auto/core/GL_ARB_vertex_attrib_64bit
Normal file
@ -0,0 +1,19 @@
|
||||
GL_ARB_vertex_attrib_64bit
|
||||
http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
|
||||
GL_ARB_vertex_attrib_64bit
|
||||
GL_DOUBLE_MAT2 0x8F46
|
||||
GL_DOUBLE_MAT3 0x8F47
|
||||
GL_DOUBLE_MAT4 0x8F48
|
||||
GL_DOUBLE_VEC2 0x8FFC
|
||||
GL_DOUBLE_VEC3 0x8FFD
|
||||
GL_DOUBLE_VEC4 0x8FFE
|
||||
void glGetVertexAttribLdv (GLuint index, GLenum pname, GLdouble* params)
|
||||
void glVertexAttribL1d (GLuint index, GLdouble x)
|
||||
void glVertexAttribL1dv (GLuint index, const GLdouble* v)
|
||||
void glVertexAttribL2d (GLuint index, GLdouble x, GLdouble y)
|
||||
void glVertexAttribL2dv (GLuint index, const GLdouble* v)
|
||||
void glVertexAttribL3d (GLuint index, GLdouble x, GLdouble y, GLdouble z)
|
||||
void glVertexAttribL3dv (GLuint index, const GLdouble* v)
|
||||
void glVertexAttribL4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
|
||||
void glVertexAttribL4dv (GLuint index, const GLdouble* v)
|
||||
void glVertexAttribLPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const void* pointer)
|
@ -194,6 +194,21 @@ typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,
|
||||
const GLchar* message,
|
||||
GLvoid* userParam);
|
||||
|
||||
/* For ARB_debug_output */
|
||||
|
||||
typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,
|
||||
GLenum type,
|
||||
GLuint id,
|
||||
GLenum severity,
|
||||
GLsizei length,
|
||||
const GLchar* message,
|
||||
GLvoid* userParam);
|
||||
|
||||
/* For GL_ARB_cl_event */
|
||||
|
||||
typedef struct _cl_context *cl_context;
|
||||
typedef struct _cl_event *cl_event;
|
||||
|
||||
#define GL_ACCUM 0x0100
|
||||
#define GL_LOAD 0x0101
|
||||
#define GL_RETURN 0x0102
|
||||
|
Loading…
Reference in New Issue
Block a user