diff options
author | Brian Paul <[email protected]> | 2001-03-07 05:06:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-07 05:06:11 +0000 |
commit | b51b0a847d7e7daaea69f77ab569086ef81c24a2 (patch) | |
tree | 165cf8b023e6c7b1f66dacc46a6c37110ef27ea7 /src/mesa/tnl/t_vb_light.c | |
parent | 249aebdd357d20f6326137c967c6b3923bef6c05 (diff) |
fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots of potential problems
Diffstat (limited to 'src/mesa/tnl/t_vb_light.c')
-rw-r--r-- | src/mesa/tnl/t_vb_light.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/tnl/t_vb_light.c b/src/mesa/tnl/t_vb_light.c index 6ccb1b0dff6..d7d1d26ca44 100644 --- a/src/mesa/tnl/t_vb_light.c +++ b/src/mesa/tnl/t_vb_light.c @@ -1,4 +1,4 @@ -/* $Id: t_vb_light.c,v 1.10 2001/03/03 20:33:31 brianp Exp $ */ +/* $Id: t_vb_light.c,v 1.11 2001/03/07 05:06:13 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -55,7 +55,7 @@ struct light_stage_data { light_func *light_func_tab; }; -#define LIGHT_STAGE_DATA(stage) ((struct light_stage_data *)(stage->private)) +#define LIGHT_STAGE_DATA(stage) ((struct light_stage_data *)(stage->privatePtr)) /* Tables for all the shading functions. */ @@ -209,7 +209,7 @@ static GLboolean run_init_lighting( GLcontext *ctx, struct light_stage_data *store; GLuint size = tnl->vb.Size; - stage->private = MALLOC(sizeof(*store)); + stage->privatePtr = MALLOC(sizeof(*store)); store = LIGHT_STAGE_DATA(stage); if (!store) return GL_FALSE; @@ -241,7 +241,7 @@ static void check_lighting( GLcontext *ctx, struct gl_pipeline_stage *stage ) { stage->active = ctx->Light.Enabled; if (stage->active) { - if (stage->private) + if (stage->privatePtr) stage->run = run_validate_lighting; stage->inputs = VERT_NORM|VERT_MATERIAL; if (ctx->Light._NeedVertices) @@ -268,7 +268,7 @@ static void dtr( struct gl_pipeline_stage *stage ) _mesa_vector1ui_free( &store->LitIndex[0] ); _mesa_vector1ui_free( &store->LitIndex[1] ); FREE( store ); - stage->private = 0; + stage->privatePtr = 0; } } |