diff options
author | Brian Paul <[email protected]> | 2009-08-13 14:05:52 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-13 14:05:52 -0600 |
commit | ecb177eaea20f3464b08dfc4d94a3194482cf73d (patch) | |
tree | b1cfadd92a1329e0798d235fa20859f139836863 /src/mesa/main/light.c | |
parent | 36df6a6e91988590900a879b88eac7c7acc0a86d (diff) |
mesa: fix warnings about locals hiding function params
Diffstat (limited to 'src/mesa/main/light.c')
-rw-r--r-- | src/mesa/main/light.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/light.c b/src/mesa/main/light.c index 17034680add..7479fe8fc4a 100644 --- a/src/mesa/main/light.c +++ b/src/mesa/main/light.c @@ -1224,15 +1224,15 @@ _mesa_update_tnl_spaces( GLcontext *ctx, GLuint new_state ) ctx->Driver.LightingSpaceChange( ctx ); } else { - GLuint new_state = ctx->NewState; + GLuint new_state2 = ctx->NewState; /* Recalculate that same state only if it has been invalidated * by other statechanges. */ - if (new_state & _NEW_MODELVIEW) + if (new_state2 & _NEW_MODELVIEW) update_modelview_scale(ctx); - if (new_state & (_NEW_LIGHT|_NEW_MODELVIEW)) + if (new_state2 & (_NEW_LIGHT|_NEW_MODELVIEW)) compute_light_positions( ctx ); } } |