From: Brian Date: Sat, 25 Aug 2007 00:06:11 +0000 (-0600) Subject: set I915_NEW_VERTEX_FORMAT in calculate_vertex_layout(), fixes demos/texenv X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b7de64c46cc76abea99ec3fbe80d6b29a0645b56;p=mesa.git set I915_NEW_VERTEX_FORMAT in calculate_vertex_layout(), fixes demos/texenv --- diff --git a/src/mesa/pipe/i915simple/i915_state_derived.c b/src/mesa/pipe/i915simple/i915_state_derived.c index bab3015fdeb..b1ea4f86c6b 100644 --- a/src/mesa/pipe/i915simple/i915_state_derived.c +++ b/src/mesa/pipe/i915simple/i915_state_derived.c @@ -161,6 +161,12 @@ static void calculate_vertex_layout( struct i915_context *i915 ) draw_set_vertex_attributes( i915->draw, vinfo->slot_to_attrib, vinfo->num_attribs); + + /* Need to set this flag so that the LIS2/4 registers get set. + * It also means the i915_update_immediate() function must be called + * after this one, in i915_update_derived(). + */ + i915->dirty |= I915_NEW_VERTEX_FORMAT; }