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/light.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/light.c')
-rw-r--r-- | src/mesa/main/light.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/light.c b/src/mesa/main/light.c index 07571cd9656..4f8bdd2ce1b 100644 --- a/src/mesa/main/light.c +++ b/src/mesa/main/light.c @@ -1,4 +1,4 @@ -/* $Id: light.c,v 1.29 2000/11/24 15:21:59 keithw Exp $ */ +/* $Id: light.c,v 1.30 2000/11/27 18:22:13 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -96,7 +96,7 @@ _mesa_Lightfv( GLenum light, GLenum pname, const GLfloat *params ) ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glLight"); - if (i < 0 || i >= MAX_LIGHTS) { + if (i < 0 || i >= ctx->Const.MaxLights) { gl_error( ctx, GL_INVALID_ENUM, "glLight" ); return; } @@ -240,7 +240,7 @@ _mesa_GetLightfv( GLenum light, GLenum pname, GLfloat *params ) ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetLight"); - if (l<0 || l>=MAX_LIGHTS) { + if (l < 0 || l >= ctx->Const.MaxLights) { gl_error( ctx, GL_INVALID_ENUM, "glGetLightfv" ); return; } @@ -292,7 +292,7 @@ _mesa_GetLightiv( GLenum light, GLenum pname, GLint *params ) ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetLight"); - if (l<0 || l>=MAX_LIGHTS) { + if (l < 0 || l >= ctx->Const.MaxLights) { gl_error( ctx, GL_INVALID_ENUM, "glGetLightiv" ); return; } |