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/state.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/state.c')
-rw-r--r-- | src/mesa/main/state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index c0c9e98e5fb..0dbf48163d9 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,4 +1,4 @@ -/* $Id: state.c,v 1.48 2000/11/24 10:25:06 keithw Exp $ */ +/* $Id: state.c,v 1.49 2000/11/27 18:22:13 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -638,7 +638,7 @@ update_projection( GLcontext *ctx ) */ if (ctx->Transform._AnyClip) { GLuint p; - for (p = 0 ; p < MAX_CLIP_PLANES ; p++) { + for (p = 0; p < ctx->Const.MaxClipPlanes; p++) { if (ctx->Transform.ClipEnabled[p]) { gl_transform_vector( ctx->Transform._ClipUserPlane[p], ctx->Transform.EyeUserPlane[p], |