void glColorTableParameterfvEXT(GLenum target,
GLenum pname
const GLfloat *params)
void glColorTableParameterivEXT(GLenum target,
GLenum pname
const GLint *params)
| target | Must be one of the following: GL_COLOR_TABLE_EXT, GL_POST_CONVOLUTION_COLOR_TABLE_EXT, GL_POST_COLOR_MATRIX_COLOR_TABLE_EXT, or GL_TEXTURE_COLOR_TABLE_EXT. |
| pname | The symbolic name of a texture color lookup table parameter. Must be one of GL_COLOR_TABLE_SCALE_EXT or GL_COLOR_TABLE_BIAS_EXT. |
| params | A pointer to an array where the values of the parameters are stored. |
pname must be GL_COLOR_TABLE_SCALE_EXT to set the scale factors. In this case, params points to an array of four values which are the scale factors for red, green, blue, and alpha. pname must be GL_COLOR_TABLE_BIAS_EXT to set the bias terms. params points to an array of four values which are the bias terms for red, green, blue, and alpha.
GL_INVALID_OPERATION is generated if glColorTableParameterEXT is executed between the execution of glBegin and the corresponding execution of glEnd.