1GLISTEXTURE(3G) GLISTEXTURE(3G)
2
3
4
6 glIsTexture - determine if a name corresponds to a texture
7
8
10 GLboolean glIsTexture( GLuint texture )
11
12
14 texture Specifies a value that may be the name of a texture.
15
17 glIsTexture returns GL_TRUE if texture is currently the name of a tex‐
18 ture. If texture is zero, or is a non-zero value that is not currently
19 the name of a texture, or if an error occurs, glIsTexture returns
20 GL_FALSE.
21
23 glIsTexture is available only if the GL version is 1.1 or greater.
24
26 GL_INVALID_OPERATION is generated if glIsTexture is executed between
27 the execution of glBegin and the corresponding execution of glEnd.
28
30 glBindTexture(3G), glCopyTexImage1D(3G), glCopyTexImage2D(3G),
31 glDeleteTextures(3G), glGenTextures(3G), glGet(3G),
32 glGetTexParameter(3G), glTexImage1D(3G), glTexImage2D(3G),
33 glTexImage3D(3G), glTexParameter(3G)
34
35
36
37 GLISTEXTURE(3G)