Files Classes Functions Hierarchy
#include <GL/glut.h>#include <zpr.h>#include <graphmisc.h>#include <zprtest.h>#include <iostream>#include <algorithm>
Go to the source code of this file.
Functions | |
| void | glerrordisplay () |
| Write OpenGl errors to cout. | |
| void glerrordisplay | ( | ) | [inline] |
Write OpenGl errors to cout.
Definition at line 18 of file zprtest.cpp.
00019 { 00020 GLenum errval = glGetError(); 00021 if (errval != GL_NO_ERROR) 00022 cout << gluErrorString( errval ) << endl; 00023 }
1.5.8