diff options
author | Keith Whitwell <[email protected]> | 2004-01-05 09:43:42 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-01-05 09:43:42 +0000 |
commit | 790734045b69c47b1525fbf9106a7ca5a8eb7416 (patch) | |
tree | 6d071a1bfea29d14bc132414cc62a18e0b5fb51f /src/mesa/drivers/dri/gamma | |
parent | effc73931f86c7961b4eb296d2d4c5d91624a9e3 (diff) |
Re-commit t_vertex.[ch] changes to fd.o server.
Diffstat (limited to 'src/mesa/drivers/dri/gamma')
-rw-r--r-- | src/mesa/drivers/dri/gamma/gamma_render.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/src/mesa/drivers/dri/gamma/gamma_render.c b/src/mesa/drivers/dri/gamma/gamma_render.c index 380c7b7044c..a0b8a5dc185 100644 --- a/src/mesa/drivers/dri/gamma/gamma_render.c +++ b/src/mesa/drivers/dri/gamma/gamma_render.c @@ -212,23 +212,7 @@ static GLboolean gamma_run_render( GLcontext *ctx, static void gamma_check_render( GLcontext *ctx, struct tnl_pipeline_stage *stage ) { - GLuint inputs = VERT_BIT_POS | VERT_BIT_COLOR0; - - if (ctx->RenderMode == GL_RENDER) { - if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR) - inputs |= VERT_BIT_COLOR1; - - if (ctx->Texture.Unit[0]._ReallyEnabled) - inputs |= VERT_BIT_TEX0; - - if (ctx->Texture.Unit[1]._ReallyEnabled) - inputs |= VERT_BIT_TEX1; - - if (ctx->Fog.Enabled) - inputs |= VERT_BIT_FOG; - } - - stage->inputs = inputs; + stage->inputs = TNL_CONTEXT(ctx)->render_inputs; } |