<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Jan 23, 2017 at 4:55 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">Compressing a render target and decompressing it in the same<br>
single-subpass render pass may waste bandwidth. While this may be<br>
beneficial in some circumstances, it does not help in all.<br>
<br>
Cc: "13.0 17.0" <<a href="mailto:mesa-stable@lists.freedesktop.org" target="_blank">mesa-stable@lists.freedesktop<wbr>.org</a>><br></blockquote><div><br></div><div>This doesn't really fix a bug...  I guess you can consider it a perf bug but it's not going to cause apps to fail.  I think I'm ok with pulling it back to 17.0 but let's leave 13.0 alone.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Signed-off-by: Nanley Chery <<a href="mailto:nanley.g.chery@intel.com" target="_blank">nanley.g.chery@intel.com</a>><br>
---<br>
 src/intel/vulkan/genX_cmd_buf<wbr>fer.c | 6 ++++--<br>
 1 file changed, 4 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/src/intel/vulkan/genX_cmd_bu<wbr>ffer.c b/src/intel/vulkan/genX_cmd_bu<wbr>ffer.c<br>
index a22fb2b6fb..9cde6896bb 100644<br>
--- a/src/intel/vulkan/genX_cmd_bu<wbr>ffer.c<br>
+++ b/src/intel/vulkan/genX_cmd_bu<wbr>ffer.c<br>
@@ -265,8 +265,10 @@ color_attachment_compute_aux_u<wbr>sage(struct anv_device *device,<br>
       att_state->fast_clear = false;<br>
    }<br>
<br>
-   if (isl_format_supports_lossless_<wbr>compression(&device->info,<br>
-                                                iview->isl.format)) {<br>
+   /* TODO: Consider using a heuristic to determine if temporarily enabling<br>
+    * CCS_E for this image view would be beneficial.<br>
+    */<br></blockquote><div><br></div><div>Maybe we should update this comment a bit:<br><br></div><div>While fast-clear resolves and partial resolves are fairly cheap in the case where you render to most of the pixels, full resolves are not because they potentially involve reading and writing the entire framebuffer.  If we can't texture with CCS_E, we should leave it off and limit ourselves to fast clears.<br><br></div><div>Also... This doesn't do quite what you think it does.  It shuts off fast clears entirely on Sky Lake if we can't texture from CCS_E.  We need to add some code above to do<br><br></div><div>if (GEN_GEN >= 9 && !isl_format_supports_lossless_compression(...))<br></div><div>   att_state->fast_clear = false;<br><br></div><div>And then remove the GEN_GEN >= 9 case below.  Maybe we want to do the code shuffling as a refactor patch and put this patch on top of it?<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
+   if (iview->image->aux_usage == ISL_AUX_USAGE_CCS_E) {<br>
       att_state->aux_usage = ISL_AUX_USAGE_CCS_E;<br>
       att_state->input_aux_usage = ISL_AUX_USAGE_CCS_E;<br>
    } else if (att_state->fast_clear) {<br>
<span class="m_7174859670613952524HOEnZb"><font color="#888888">--<br>
2.11.0<br>
<br>
______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org" target="_blank">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></div>