diff options
author | Stéphane Marchesin <[email protected]> | 2012-10-08 12:30:46 -0700 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2012-10-08 12:30:46 -0700 |
commit | 437a2560b19c97ee709fa31ed644f948229df637 (patch) | |
tree | 505edd1f3d65987fc2cce852a4c866b7e1e6bb67 /src/gallium/drivers/i915 | |
parent | 6a514494fa4c45e921bd6af7f3187a67c1e8d9d2 (diff) |
i915g: Don't clobber I915_NEW_FS on new framebuffer.
This snuck in with a previous commit.
Diffstat (limited to 'src/gallium/drivers/i915')
-rw-r--r-- | src/gallium/drivers/i915/i915_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |