GLBINDTEXTUREUNIT(3G) | [FIXME: manual] | GLBINDTEXTUREUNIT(3G) |
NAME
glBindTextureUnit - bind an existing texture object to the specified texture unit
C SPECIFICATION
void glBindTextureUnit(GLuint unit, GLuint texture);
PARAMETERS
unit
texture
DESCRIPTION
glBindTextureUnit binds an existing texture object to the texture unit numbered unit.
texture must be zero or the name of an existing texture object. When texture is the name of an existing texture object, that object is bound to the target, in the corresponding texture unit, that was specified when the object was created. When texture is zero, each of the targets enumerated at the beginning of this section is reset to its default texture for the corresponding texture image unit.
ASSOCIATED GETS
glGet() with argument GL_TEXTURE_BINDING_1D, GL_TEXTURE_BINDING_2D, GL_TEXTURE_BINDING_3D, GL_TEXTURE_BINDING_1D_ARRAY, GL_TEXTURE_BINDING_2D_ARRAY, GL_TEXTURE_BINDING_RECTANGLE, GL_TEXTURE_BINDING_BUFFER, GL_TEXTURE_BINDING_CUBE_MAP, GL_TEXTURE_BINDING_CUBE_MAP_ARRAY, GL_TEXTURE_BINDING_2D_MULTISAMPLE or GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY.
ERRORS
GL_INVALID_OPERATION error is generated if texture is not zero or the name of an existing texture object.
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 |
glBindTextureUnit | - | - | - | - | - | - | - | - | - | - | - | ✔ |
SEE ALSO
glDeleteTextures(), glGenTextures(), glGet(), glGetTexParameter(), glIsTexture(), glTexImage1D(), glTexImage2D(), glTexImage2DMultisample(), glTexImage3D(), glTexImage3DMultisample(), glTexBuffer(), glTexParameter()
COPYRIGHT
Copyright © 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 © 2014 Khronos Group
10/20/2024 | [FIXME: source] |