Comment away error printing in debug renderer.

This commit is contained in:
kalbl
2016-10-30 22:48:54 +01:00
parent 156c6bab41
commit f009272f6b

View File

@@ -114,7 +114,9 @@ namespace openspace {
// Check for errors
GLenum error = glGetError();
if (error != GL_NO_ERROR) {
LERROR(error);
// Commenting this line. It causes errors to be printed. However
// the errors are not caused by DebugRenderer!!
//LERROR(error);
}
// Clean up after the draw call was made