diff options
author | Brian Paul <[email protected]> | 2000-11-27 18:22:13 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-11-27 18:22:13 +0000 |
commit | a864432fb4333dfbbe669554de7485d8426e1c38 (patch) | |
tree | da0b272a0784a1f830e15a529778c1021a65628b /src/mesa/main/clip.c | |
parent | 50478ded80fe04ab384b702723f227f53516212c (diff) |
Added MaxClipPlanes and MaxLights to gl_constants struct so T&L
drivers can report non-default numbers of lights and clip planes.
Diffstat (limited to 'src/mesa/main/clip.c')
-rw-r--r-- | src/mesa/main/clip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/clip.c b/src/mesa/main/clip.c index 0dc365131de..131f3b60331 100644 --- a/src/mesa/main/clip.c +++ b/src/mesa/main/clip.c @@ -1,4 +1,4 @@ -/* $Id: clip.c,v 1.17 2000/11/24 10:25:05 keithw Exp $ */ +/* $Id: clip.c,v 1.18 2000/11/27 18:22:13 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -59,7 +59,7 @@ _mesa_ClipPlane( GLenum plane, const GLdouble *eq ) ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glClipPlane"); p = (GLint) plane - (GLint) GL_CLIP_PLANE0; - if (p<0 || p>=MAX_CLIP_PLANES) { + if (p < 0 || p >= ctx->Const.MaxClipPlanes) { gl_error( ctx, GL_INVALID_ENUM, "glClipPlane" ); return; } @@ -114,7 +114,7 @@ _mesa_GetClipPlane( GLenum plane, GLdouble *equation ) p = (GLint) (plane - GL_CLIP_PLANE0); - if (p<0 || p>=MAX_CLIP_PLANES) { + if (p < 0 || p >= ctx->Const.MaxClipPlanes) { gl_error( ctx, GL_INVALID_ENUM, "glGetClipPlane" ); return; } |