Specifies clear values for the accumulation buffer.
OpenGL C bindings library: libGL.a
void glClearAccum(GLfloat Red, GLfloat Green, GLfloat Blue, GLfloat Alpha)
The glClearAccum subroutine specifies the red, green, blue, and alpha values used by the glClear subroutine to clear the accumulation buffer. Values specified by glClearAccum are clamped to the range [-1,1].
GL_INVALID_OPERATION | The glClearAccum subroutine is called between a call to glBegin and the corresponding call to glEnd. |
Associated gets for the glClearAccum subroutine are as follows. (See the glGet subroutine for more information.)
glGet with argument GL_ACCUM_CLEAR_VALUE.
/usr/include/GL/gl.h | Contains C language constants, variable type definitions, and ANSI function prototypes for OpenGL. |
The glBegin or glEnd subroutine, glClear subroutine.