|
NAMEglGetTexGendv, glGetTexGenfv, glGetTexGeniv - return texture coordinate generation parametersC SPECIFICATIONvoid glGetTexGendv( GLenum coord,GLenum pname, GLdouble *params )void glGetTexGenfv( GLenum coord, GLenum pname, GLfloat *params )void glGetTexGeniv( GLenum coord, GLenum pname, GLint *params ) PARAMETERS
DESCRIPTIONglGetTexGen returns in params selected parameters of a texture coordinate generation function that was specified using glTexGen. coord names one of the (s, t, r, q) texture coordinates, using the symbolic constant GL_S, GL_T, GL_R, or GL_Q.pname specifies one of three symbolic names:
NOTESIf an error is generated, no change is made to the contents of params.ERRORSGL_INVALID_ENUM is generated if coord or pname is not an accepted value.GL_INVALID_OPERATION is generated if glGetTexGen is executed between the execution of glBegin and the corresponding execution of glEnd. SEE ALSOglTexGen Visit the GSP FreeBSD Man Page Interface. |