summaryrefslogtreecommitdiff
path: root/src/libutil
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-10-05 02:08:53 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-10-05 02:08:53 +0000
commit6faffa256d6e45e6ffd5230312e4b022b1f2bed1 (patch)
treee3ada90648e9ed36b61b1da8e8a917980c038bc9 /src/libutil
parent074d91651ce3e25b2ce23833578bd500f642fc6e (diff)
downloadglu-6faffa256d6e45e6ffd5230312e4b022b1f2bed1.tar.gz
added GL_INVALID_FRAMEBUFFER_OPERATION_EXT to gluErrorString()
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/error.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/libutil/error.c b/src/libutil/error.c
index 7c8f065..12705c8 100644
--- a/src/libutil/error.c
+++ b/src/libutil/error.c
@@ -31,8 +31,8 @@
** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification.
**
-** $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
-** $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libutil/error.c,v 1.1 2001/03/17 00:25:41 brianp Exp $
+** $Date: 2005/10/05 02:08:53 $ $Revision: 1.2 $
+** $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libutil/error.c,v 1.2 2005/10/05 02:08:53 brianp Exp $
*/
#include "gluos.h"
@@ -81,6 +81,11 @@ gluErrorString(GLenum errorCode)
if ((errorCode >= GLU_TESS_ERROR1) && (errorCode <= GLU_TESS_ERROR8)) {
return (const unsigned char *) __gluTessErrorString(errorCode - (GLU_TESS_ERROR1 - 1));
}
+#ifdef GL_EXT_framebuffer_object
+ if (errorCode == GL_INVALID_FRAMEBUFFER_OPERATION_EXT) {
+ return (const unsigned char *) "invalid framebuffer operation";
+ }
+#endif
return 0;
}