From 499458bcdb3879c5a7088be14e0fd75ea29d0be1 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Thu, 9 Feb 2006 23:01:34 +0000 Subject: [PATCH] Add INVARIENT to the active state list --- src/mesa/drivers/dri/i915/i915_state.c | 7 ++++--- 1 file 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 0627f102da2..8c67bea2ec9 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 )