1GLUERRORSTRING(3G) GLUERRORSTRING(3G)
2
3
4
6 gluErrorString - produce an error string from a GL or GLU error code
7
8
10 const GLubyte * gluErrorString( GLenum error )
11
12
14 error Specifies a GL or GLU error code.
15
17 gluErrorString produces an error string from a GL or GLU error code.
18 The string is in ISO Latin 1 . For example, gluErrorString(‐
19 GL_OUT_OF_MEMORY) returns the string out of memory.
20
21 The standard GLU error codes are GLU_INVALID_ENUM, GLU_INVALID_VALUE,
22 and GLU_OUT_OF_MEMORY. Certain other GLU functions can return special‐
23 ized error codes through callbacks. See the glGetError reference page
24 for the list of GL error codes.
25
27 NULL is returned if error is not a valid GL or GLU error code.
28
30 glGetError(3G), gluNurbsCallback(3G), gluQuadricCallback(3G),
31 gluTessCallback(3G)
32
33
34
35 GLUERRORSTRING(3G)