1UNTITLED LOCAL UNTITLED
2
4 glutReportErrors — Reports all available OpenGL errors.
5
7 OpenGLUT - opengl
8
10 #include <openglut.h>
11
12 void
13 glutReportErrors(void);
14
16 Displays as an OpenGLUT warning every OpenGL error that OpenGL remembers
17 giving to us and which we have not processed. Uses gluErrorString().
18
19 This is forcibly done by OpenGLUT periodically if "-gldebug" is one of
20 the strings passed into glutInit() via rgv.
21
23 gluErrorString(3) glutInit(3)
24
25
26
27
28 Epoch