From 8184ec9fb6b08c6c8a0398040ae5d89dd0b0cfb8 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 5 Oct 2005 02:08:53 +0000 Subject: added GL_INVALID_FRAMEBUFFER_OPERATION_EXT to gluErrorString() --- src/glu/sgi/libutil/error.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/glu/sgi/libutil/error.c b/src/glu/sgi/libutil/error.c index 7c8f065f6f..12705c8a8e 100644 --- a/src/glu/sgi/libutil/error.c +++ b/src/glu/sgi/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; } -- cgit v1.2.3