Query: glclientactivetexture
OS: centos
Section: 3g
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GLCLIENTACTIVETEXTUR(3G) OpenGL Manual GLCLIENTACTIVETEXTUR(3G)NAMEglClientActiveTexture - select active texture unitC SPECIFICATIONvoid glClientActiveTexture(GLenum texture);PARAMETERStexture Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of GL_TEXTUREi, where i ranges from 0 to the value of GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value. The initial value is GL_TEXTURE0.DESCRIPTIONglClientActiveTexture selects the vertex array client state parameters to be modified by glTexCoordPointer(), and enabled or disabled with glEnableClientState() or glDisableClientState(), respectively, when called with a parameter of GL_TEXTURE_COORD_ARRAY.NOTESglClientActiveTexture is supported only if the GL version is 1.3 or greater, or ARB_multitexture is included in the string returned by glGetString() when called with the argument GL_EXTENSIONS.ERRORSGL_INVALID_ENUM is generated if texture is not one of GL_TEXTUREi, where i ranges from 0 to the value of GL_MAX_TEXTURE_COORDS - 1.ASSOCIATED GETSglGet() with argument GL_CLIENT_ACTIVE_TEXTURE or GL_MAX_TEXTURE_COORDSSEE ALSOglActiveTexture(), glDisableClientState(), glEnableClientState(), glMultiTexCoord(), glTexCoordPointer()COPYRIGHTCopyright (C) 1991-2006 Silicon Graphics, Inc. This document is licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB/.AUTHORSopengl.org opengl.org 06/10/2014 GLCLIENTACTIVETEXTUR(3G)