<div dir="ltr">Reviewed-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Apr 11, 2018 at 1:56 PM, Nanley Chery <span dir="ltr"><<a href="mailto:nanleychery@gmail.com" target="_blank">nanleychery@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">If the aux state is CLEAR and clear color value has changed, only the<br>
surface state must be updated. The bit-pattern in the aux buffer is<br>
exactly the same.<br>
<br>
v2: Handle the indirect color on gen10+.<br>
---<br>
 src/mesa/drivers/dri/i965/brw_<wbr>blorp.c | 7 +++++--<br>
 1 file changed, 5 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/src/mesa/drivers/dri/i965/<wbr>brw_blorp.c b/src/mesa/drivers/dri/i965/<wbr>brw_blorp.c<br>
index 48022bb1c4f..52fec02174d 100644<br>
--- a/src/mesa/drivers/dri/i965/<wbr>brw_blorp.c<br>
+++ b/src/mesa/drivers/dri/i965/<wbr>brw_blorp.c<br>
@@ -1232,11 +1232,14 @@ do_single_blorp_clear(struct brw_context *brw, struct gl_framebuffer *fb,<br>
       bool same_clear_color =<br>
          !intel_miptree_set_clear_<wbr>color(brw, irb->mt, &ctx->Color.ClearColor);<br>
<br>
-      /* If the buffer is already in INTEL_FAST_CLEAR_STATE_CLEAR, the clear<br>
+      /* If the buffer is already in ISL_AUX_STATE_CLEAR, the clear<br>
        * is redundant and can be skipped.<br>
        */<br>
-      if (aux_state == ISL_AUX_STATE_CLEAR && same_clear_color)<br>
+      if (aux_state == ISL_AUX_STATE_CLEAR) {<br>
+         if (!same_clear_color)<br>
+            intel_miptree_update_indirect_<wbr>color(brw, irb->mt);<br>
          return;<br>
+      }<br>
<br>
       DBG("%s (fast) to mt %p level %d layers %d+%d\n", __FUNCTION__,<br>
           irb->mt, irb->mt_level, irb->mt_layer, num_layers);<br>
<span class="HOEnZb"><font color="#888888">-- <br>
2.16.2<br>
<br>
______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
</font></span></blockquote></div><br></div>