diff options
author | Eric Anholt <[email protected]> | 2009-01-07 14:09:07 -0800 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2009-01-09 11:16:39 +0000 |
commit | 510916f50961a3a9286807e7f75ba716f3e7f967 (patch) | |
tree | fc22e88519f847dd069d2431ac59a2a5ba5a3fbc /src/mesa/tnl/t_context.c | |
parent | 5e116e52a2859cca27e984c4ee4fef69a9280e56 (diff) |
mesa: Remove _Active and _UseTexEnvProgram flags from fragment programs.
There was a note in state.c about _Active deserving to die, and there were
potential issues with it due to i965 forgetting to set _UseTexEnvProgram.
Removing both simplifies things.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/tnl/t_context.c')
-rw-r--r-- | src/mesa/tnl/t_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_context.c b/src/mesa/tnl/t_context.c index ce37dc04282..fdf4534b360 100644 --- a/src/mesa/tnl/t_context.c +++ b/src/mesa/tnl/t_context.c @@ -140,7 +140,7 @@ _tnl_InvalidateState( GLcontext *ctx, GLuint new_state ) /* fixed-function fog */ RENDERINPUTS_SET( tnl->render_inputs_bitset, _TNL_ATTRIB_FOG ); } - else if (ctx->FragmentProgram._Active || ctx->FragmentProgram._Current) { + else if (ctx->FragmentProgram._Current) { struct gl_fragment_program *fp = ctx->FragmentProgram._Current; if (fp) { if (fp->FogOption != GL_NONE || (fp->Base.InputsRead & FRAG_BIT_FOGC)) { |