GLUtil: Change return type from GLuint to GLenum for OpenGL_ReportGLError.

This commit is contained in:
Lioncash
2014-10-23 12:51:45 -04:00
parent 2f48d71ddf
commit 3509a6d03e
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ void InitInterface();
GLuint OpenGL_CompileProgram(const char *vertexShader, const char *fragmentShader);
// Error reporting - use the convenient macros.
GLuint OpenGL_ReportGLError(const char *function, const char *file, int line);
GLenum OpenGL_ReportGLError(const char *function, const char *file, int line);
bool OpenGL_ReportFBOError(const char *function, const char *file, int line);
#if defined(_DEBUG) || defined(DEBUGFAST)