diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-06-29 18:55:52 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-06-29 18:55:52 +0000 |
commit | 86586aa6f9331ededba194b7f37ebfce7908f9c8 (patch) | |
tree | daf1199923baee859974f42524d7c972ea627d32 /src/mesa/main | |
parent | 0dc5edf3ae86a868840796ac87b530e951339c5b (diff) |
added GL_TABLE_TOO_LARGE to gl_error()
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/context.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 0c76867a22..50ccb8ce35 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.75 2000/06/28 04:20:21 brianp Exp $ */ +/* $Id: context.c,v 1.76 2000/06/29 18:55:52 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1964,6 +1964,9 @@ void gl_error( GLcontext *ctx, GLenum error, const char *s ) case GL_OUT_OF_MEMORY: strcpy( errstr, "GL_OUT_OF_MEMORY" ); break; + case GL_TABLE_TOO_LARGE: + strcpy( errstr, "GL_TABLE_TOO_LARGE" ); + break; default: strcpy( errstr, "unknown" ); break; |