From: Ian Romanick Date: Sat, 16 Apr 2011 01:46:57 +0000 (-0700) Subject: i915: gl_fragment_program::FogOption is always GL_NONE so don't check it X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df7555e763b9a4d989788e9b1cd25e8740649e79;p=mesa.git i915: gl_fragment_program::FogOption is always GL_NONE so don't check it Reviewed-by: Eric Anholt Acked-by: Corbin Simpson Acked-by: Alex Deucher --- diff --git a/src/mesa/drivers/dri/i915/i915_fragprog.c b/src/mesa/drivers/dri/i915/i915_fragprog.c index 7286e2b73d8..bfc2f9694bd 100644 --- a/src/mesa/drivers/dri/i915/i915_fragprog.c +++ b/src/mesa/drivers/dri/i915/i915_fragprog.c @@ -1285,15 +1285,6 @@ i915ProgramStringNotify(struct gl_context * ctx, if (target == GL_FRAGMENT_PROGRAM_ARB) { struct i915_fragment_program *p = (struct i915_fragment_program *) prog; p->translated = 0; - - /* Hack: make sure fog is correctly enabled according to this - * fragment program's fog options. - */ - if (p->FragProg.FogOption) { - /* add extra instructions to do fog, then turn off FogOption field */ - _mesa_append_fog_code(ctx, &p->FragProg, GL_TRUE); - p->FragProg.FogOption = GL_NONE; - } } (void) _tnl_program_string(ctx, target, prog); diff --git a/src/mesa/drivers/dri/i915/i915_state.c b/src/mesa/drivers/dri/i915/i915_state.c index 3b1af4c455e..5c7c0c32d6a 100644 --- a/src/mesa/drivers/dri/i915/i915_state.c +++ b/src/mesa/drivers/dri/i915/i915_state.c @@ -736,8 +736,8 @@ i915_update_fog(struct gl_context * ctx) if (ctx->FragmentProgram._Current) { /* Pull in static fog state from program */ - mode = ctx->FragmentProgram._Current->FogOption; - enabled = (mode != GL_NONE); + mode = GL_NONE; + enabled = GL_FALSE; try_pixel_fog = 0; } else {