diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2006-02-09 23:01:34 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2006-02-09 23:01:34 +0000 |
commit | 499458bcdb3879c5a7088be14e0fd75ea29d0be1 (patch) | |
tree | fa1f38523dd598cd9b1a0241faf63a42b740f08d | |
parent | 37a53fd6a0dd7f74bccbdce2a90120898952f30f (diff) |
Add INVARIENT to the active state list
-rw-r--r-- | src/mesa/drivers/dri/i915/i915_state.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i915/i915_state.c b/src/mesa/drivers/dri/i915/i915_state.c index 0627f102da..8c67bea2ec 100644 --- a/src/mesa/drivers/dri/i915/i915_state.c +++ b/src/mesa/drivers/dri/i915/i915_state.c @@ -905,9 +905,10 @@ static void i915_init_packets( i915ContextPtr i915 ) * we get hardware contexts working. */ i915->state.active = (I915_UPLOAD_PROGRAM | - I915_UPLOAD_STIPPLE | - I915_UPLOAD_CTX | - I915_UPLOAD_BUFFERS); + I915_UPLOAD_STIPPLE | + I915_UPLOAD_CTX | + I915_UPLOAD_BUFFERS | + I915_UPLOAD_INVARIENT); } void i915InitStateFunctions( struct dd_function_table *functions ) |