1GLUQUADRICTEXTURE(3G) GLUQUADRICTEXTURE(3G)
2
3
4
6 gluQuadricTexture - specify if texturing is desired for quadrics
7
8
10 void gluQuadricTexture( GLUquadric* quad,
11 GLboolean texture )
12
13
15 quad Specifies the quadrics object (created with gluNewQuadric).
16
17 texture Specifies a flag indicating if texture coordinates should be
18 generated.
19
21 gluQuadricTexture specifies if texture coordinates should be generated
22 for quadrics rendered with quad. If the value of texture is GL_TRUE,
23 then texture coordinates are generated, and if texture is GL_FALSE,
24 they are not. The initial value is GL_FALSE.
25
26 The manner in which texture coordinates are generated depends upon the
27 specific quadric rendered.
28
30 gluNewQuadric(3G), gluQuadricDrawStyle(3G), gluQuadricNormals(3G),
31 gluQuadricOrientation(3G)
32
33
34
35
36 GLUQUADRICTEXTURE(3G)