From: Stéphane Marchesin Date: Mon, 8 Oct 2012 19:30:46 +0000 (-0700) Subject: i915g: Don't clobber I915_NEW_FS on new framebuffer. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=437a2560b19c97ee709fa31ed644f948229df637;p=mesa.git i915g: Don't clobber I915_NEW_FS on new framebuffer. This snuck in with a previous commit. --- diff --git a/src/gallium/drivers/i915/i915_state.c b/src/gallium/drivers/i915/i915_state.c index aa2971c59cd..a00e2fb3af4 100644 --- a/src/gallium/drivers/i915/i915_state.c +++ b/src/gallium/drivers/i915/i915_state.c @@ -797,7 +797,7 @@ static void i915_set_framebuffer_state(struct pipe_context *pipe, } pipe_surface_reference(&i915->framebuffer.zsbuf, fb->zsbuf); - i915->dirty |= I915_NEW_FRAMEBUFFER | I915_NEW_FS; + i915->dirty |= I915_NEW_FRAMEBUFFER; }