GLGETSAMPLERPARAMETE(3G) | [FIXME: manual] | GLGETSAMPLERPARAMETE(3G) |
NAME
glGetSamplerParameter - return sampler parameter values
C SPECIFICATION
void glGetSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat * params);
void glGetSamplerParameteriv(GLuint sampler, GLenum pname, GLint * params);
void glGetSamplerParameterIiv(GLuint sampler, GLenum pname, GLint * params);
void glGetSamplerParameterIuiv(GLuint sampler, GLenum pname, GLuint * params);
PARAMETERS
sampler
pname
params
DESCRIPTION
glGetSamplerParameter returns in params the value or values of the sampler parameter specified as pname. sampler defines the target sampler, and must be the name of an existing sampler object, returned from a previous call to glGenSamplers(). pname accepts the same symbols as glSamplerParameter(), with the same interpretations:
GL_TEXTURE_MAG_FILTER
GL_TEXTURE_MIN_FILTER
GL_TEXTURE_MIN_LOD
GL_TEXTURE_MAX_LOD
GL_TEXTURE_WRAP_S
GL_TEXTURE_WRAP_T
GL_TEXTURE_WRAP_R
GL_TEXTURE_BORDER_COLOR
GL_TEXTURE_COMPARE_MODE
GL_TEXTURE_COMPARE_FUNC
NOTES
If an error is generated, no change is made to the contents of params.
glGetSamplerParameter is available only if the GL version is 3.3 or higher.
ERRORS
GL_INVALID_VALUE is generated if sampler is not the name of a sampler object returned from a previous call to glGenSamplers().
GL_INVALID_ENUM is generated if pname is not an accepted value.
VERSION SUPPORT
OpenGL Version | ||||||||||||
Function / Feature Name | 2.0 | 2.1 | 3.0 | 3.1 | 3.2 | 3.3 | 4.0 | 4.1 | 4.2 | 4.3 | 4.4 | 4.5 |
glGetSamplerParameterIiv | - | - | - | - | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
glGetSamplerParameterIuiv | - | - | - | - | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
glGetSamplerParameterfv | - | - | - | - | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
glGetSamplerParameteriv | - | - | - | - | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
SEE ALSO
glSamplerParameter(), glGenSamplers(), glDeleteSamplers(), glSamplerParameter()
COPYRIGHT
Copyright © 2010-2014 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. https://opencontent.org/openpub/.
COPYRIGHT
Copyright © 2010-2014 Khronos Group
10/20/2024 | [FIXME: source] |