Mesa (master): i915g: fix braino in the static state rework

Daniel Vetter danvet at kemper.freedesktop.org
Tue Mar 15 20:49:11 UTC 2011


Module: Mesa
Branch: master
Commit: d04348aaf69549c14b68e77d4003e4e3499e7cce
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d04348aaf69549c14b68e77d4003e4e3499e7cce

Author: Daniel Vetter <daniel.vetter at ffwll.ch>
Date:   Tue Mar 15 21:49:25 2011 +0100

i915g: fix braino in the static state rework

For mip-map level rendering, both draw offset and size tend to change ...

Signed-off-by: Daniel Vetter <daniel.vetter at ffwll.ch>

---

 src/gallium/drivers/i915/i915_state_static.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/i915/i915_state_static.c b/src/gallium/drivers/i915/i915_state_static.c
index 44449be..2865298 100644
--- a/src/gallium/drivers/i915/i915_state_static.c
+++ b/src/gallium/drivers/i915/i915_state_static.c
@@ -131,7 +131,8 @@ static void update_framebuffer(struct i915_context *i915)
       i915->current.draw_offset = draw_offset;
       i915_set_flush_dirty(i915, I915_PIPELINE_FLUSH);
       i915->static_dirty |= I915_DST_RECT;
-   } else if (i915->current.draw_size != draw_size) {
+   }
+   if (i915->current.draw_size != draw_size) {
       i915->current.draw_size = draw_size;
       i915->static_dirty |= I915_DST_RECT;
    }




More information about the mesa-commit mailing list