mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-11 08:43:49 +00:00
Hard-code GL_ARB_sampler_objects entry points due to use of {if} etc in spec that GLEW doesn't understand
git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@594 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
parent
db5fa843c9
commit
ea6c9830f7
18
auto/core/GL_ARB_sampler_objects
Normal file
18
auto/core/GL_ARB_sampler_objects
Normal file
@ -0,0 +1,18 @@
|
||||
GL_ARB_sampler_objects
|
||||
http://www.opengl.org/registry/specs/ARB/sampler_objects.txt
|
||||
GL_ARB_sampler_objects
|
||||
GL_SAMPLER_BINDING 0x8919
|
||||
void glBindSampler (GLuint unit, GLuint sampler)
|
||||
void glDeleteSamplers (GLsizei count, const GLuint * samplers)
|
||||
void glGenSamplers (GLsizei count, GLuint* samplers)
|
||||
void glGetSamplerParameterIiv (GLuint sampler, GLenum pname, GLint* params)
|
||||
void glGetSamplerParameterIuiv (GLuint sampler, GLenum pname, GLuint* params)
|
||||
void glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat* params)
|
||||
void glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint* params)
|
||||
GLboolean glIsSampler (GLuint sampler)
|
||||
void glSamplerParameterIiv (GLuint sampler, GLenum pname, const GLint* params)
|
||||
void glSamplerParameterIuiv (GLuint sampler, GLenum pname, const GLuint* params)
|
||||
void glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param)
|
||||
void glSamplerParameterfv (GLuint sampler, GLenum pname, const GLfloat* params)
|
||||
void glSamplerParameteri (GLuint sampler, GLenum pname, GLint param)
|
||||
void glSamplerParameteriv (GLuint sampler, GLenum pname, const GLint* params)
|
Loading…
Reference in New Issue
Block a user