1GLISTEXTURE(3G) OpenGL Manual GLISTEXTURE(3G)
2
3
4
6 glIsTexture - determine if a name corresponds to a texture
7
9 GLboolean glIsTexture(GLuint texture);
10
12 texture
13 Specifies a value that may be the name of a texture.
14
16 glIsTexture returns GL_TRUE if texture is currently the name of a
17 texture. If texture is zero, or is a non-zero value that is not
18 currently the name of a texture, or if an error occurs, glIsTexture
19 returns GL_FALSE.
20
21 A name returned by glGenTextures(), but not yet associated with a
22 texture by calling glBindTexture(), is not the name of a texture.
23
25 glBindTexture(), glCopyTexImage1D(), glCopyTexImage2D(),
26 glDeleteTextures(), glGenTextures(), glGet(), glGetTexParameter(),
27 glTexImage1D(), glTexImage2D(), glTexImage3D(), glTexParameter()
28
30 Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed
31 under the SGI Free Software B License. For details, see
32 http://oss.sgi.com/projects/FreeB/.
33
35 opengl.org
36
37
38
39opengl.org 06/10/2014 GLISTEXTURE(3G)