1GLISTEXTURE(3G) [FIXME: 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 ┌────────────┬───────────────────────────────────────────────────────────────────────┐
26 │ │ OpenGL Version │
27 ├────────────┼─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┤
28 │Function │ 2.0 │ 2.1 │ 3.0 │ 3.1 │ 3.2 │ 3.3 │ 4.0 │ 4.1 │ 4.2 │ 4.3 │ 4.4 │ 4.5 │
29 │/ │ │ │ │ │ │ │ │ │ │ │ │ │
30 │Feature │ │ │ │ │ │ │ │ │ │ │ │ │
31 │Name │ │ │ │ │ │ │ │ │ │ │ │ │
32 ├────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
33 │glIsTexture │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │
34 └────────────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┘
35
37 glBindTexture(), glCopyTexImage1D(), glCopyTexImage2D(),
38 glDeleteTextures(), glGenTextures(), glGet(), glGetTexParameter(),
39 glTexImage1D(), glTexImage2D(), glTexImage3D(), glTexParameter()
40
42 Copyright © 1991-2006 Silicon Graphics, Inc. Copyright © 2010-2014
43 Khronos Group. This document is licensed under the SGI Free Software B
44 License. For details, see http://oss.sgi.com/projects/FreeB/.
45
47 Copyright © 1991-2006 Silicon Graphics, Inc.
48 Copyright © 2010-2014 Khronos Group
49
50
51
52[FIXME: source] 07/13/2018 GLISTEXTURE(3G)