diff options
author | Brian <brian@i915.localnet.net> | 2007-07-30 13:10:12 -0600 |
---|---|---|
committer | Brian <brian@i915.localnet.net> | 2007-07-30 13:10:12 -0600 |
commit | a548d3cb71116f93d6cd9bc818c57b70ac9d9504 (patch) | |
tree | 6393209bde142e179eb19cffc78d7e62ff135c37 /src/mesa/drivers/dri/i915tex | |
parent | f38d26fd83a2193c6cba9ce72d912f579b25f5fe (diff) |
call st_invalidate_state()
Diffstat (limited to 'src/mesa/drivers/dri/i915tex')
-rw-r--r-- | src/mesa/drivers/dri/i915tex/i915_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i915tex/i915_context.c b/src/mesa/drivers/dri/i915tex/i915_context.c index 49e30141e4..b6d004b258 100644 --- a/src/mesa/drivers/dri/i915tex/i915_context.c +++ b/src/mesa/drivers/dri/i915tex/i915_context.c @@ -71,6 +71,8 @@ i915InvalidateState(GLcontext * ctx, GLuint new_state) _tnl_invalidate_vertex_state(ctx, new_state); intel_context(ctx)->NewGLState |= new_state; + st_invalidate_state(ctx, new_state); + /* Todo: gather state values under which tracked parameters become * invalidated, add callbacks for things like * ProgramLocalParameters, etc. |