diff options
author | Eric Anholt <[email protected]> | 2009-07-16 18:41:03 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2009-07-16 19:02:04 -0700 |
commit | 9cea84b6b5f96bf3bb42546e49b76024d7126e30 (patch) | |
tree | 687e9f7f919ea90b745d7d1e63d4837d8f7f253c /src/mesa/main/state.c | |
parent | 99174e7630676307f618c252755a20ba61ad9158 (diff) |
texenv: Calculate whether we need to do secondary color on our own.
The _TriangleCaps bit is deprecated, not updated when we require, and
is set based on state that hasn't been updated at that point in
_mesa_update_state_locked().
Fixes incorrect clear color in glsl/twoside.c with meta_clear_tris.
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 9ba131bee50..d8191ab5187 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -546,7 +546,7 @@ _mesa_update_state_locked( GLcontext *ctx ) /* Determine which state flags effect vertex/fragment program state */ if (ctx->FragmentProgram._MaintainTexEnvProgram) { - prog_flags |= (_NEW_TEXTURE | _NEW_FOG | _DD_NEW_SEPARATE_SPECULAR | + prog_flags |= (_NEW_TEXTURE | _NEW_FOG | _NEW_ARRAY | _NEW_LIGHT | _NEW_POINT | _NEW_RENDERMODE); } if (ctx->VertexProgram._MaintainTnlProgram) { |