<div dir="ltr"><div><div>I think I've reviewed all the ones that make significant functional changes.  The exception is the patch that makes us not do a fast depth clear.  I think what you did is probably better but I haven't thought about it enough to be sure.<br><br></div>I'm not sure what I think about the last several that mostly move code around.  On the one hand, it kind-of unifies the "should we fast-clear" question into intel_mipmap_tree.c.  On the other hand, it pulls it away from the function that actually does the clear spreads the code out more.  Multiple times in the past, I've wanted to pull the guts of the color clearing code out of brw_blorp.c and into brw_clear.c and just have brw_clear_miptree and brw_ccs/mcs_clear_miptree helpers.  Then all of those decisions would be together in brw_clear.c.  In any case, I'll think on it more.<br><br></div>--Jason<br><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 30, 2018 at 11:12 AM, 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">Starting with CannonLake, the sampler no longer decodes the surface<br>
state clear color when using an sRGB-formatted texture. This change<br>
requires that our driver perform this decode in software instead. We<br>
accounted for this change initially by disabling fast-clears when sRGB<br>
encode was enabled. This series implements the software decode and<br>
re-enables sRGB-encoded fast-clears.<br>
<br>
The software decode is performed through a new getter for the miptree<br>
clear color. To keep the miptree API balanced and to discourage its<br>
users from accessing the clear color field directly, we add a getter for<br>
the depth clear value and change the existing setters so that the user<br>
no longer needs to know the current clear color to perform an efficient<br>
clear operation.<br>
<br>
Two piglit tests have been modified to test that the linearization of<br>
the clear color occurs (when appropriate) for shader texture() calls and<br>
on framebuffer blit sources. The modification patches can be found here:<br>
<a href="https://lists.freedesktop.org/archives/piglit/2018-March/023996.html" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>archives/piglit/2018-March/<wbr>023996.html</a><br>
<br>
Jason Ekstrand (1):<br>
  util/srgb: Add a float sRGB -> linear helper<br>
<br>
Nanley Chery (13):<br>
  i965: Use the brw_context for the clear color and value setters<br>
  i965/miptree: Move the clear color and value setter implementations<br>
  i965: Make the miptree clear color setter take a gl_color_union<br>
  i965/miptree: Add and use a getter for the clear color<br>
  i965/miptree: Extend the sRGB-blending WA to future platforms<br>
  i965/meta_util: Re-enable sRGB-encoded fast-clears on CNL<br>
  i965: Add and use a getter for depth miptree clear values<br>
  i965: Allow failure when setting the depth clear value<br>
  i965/brw_clear: Don't resolve to change the depth clear value<br>
  i965/brw_clear: Delete redundant code<br>
  i965/blorp: Also skip the fast clear if the clear color differs<br>
  i965/miptree: Allow failure when setting the clear color<br>
  i965/blorp: Delete redundant code<br>
<br>
 src/mesa/drivers/dri/i965/brw_<wbr>blorp.c            |  60 +++------<br>
 src/mesa/drivers/dri/i965/brw_<wbr>clear.c            |  45 +------<br>
 src/mesa/drivers/dri/i965/brw_<wbr>meta_util.c        |  11 --<br>
 src/mesa/drivers/dri/i965/brw_<wbr>misc_state.c       |  15 ---<br>
 src/mesa/drivers/dri/i965/brw_<wbr>wm_surface_state.c |   4 +-<br>
 src/mesa/drivers/dri/i965/<wbr>gen6_depth_state.c     |   4 +-<br>
 src/mesa/drivers/dri/i965/<wbr>gen7_misc_state.c      |   3 +-<br>
 src/mesa/drivers/dri/i965/<wbr>gen8_depth_state.c     |   3 +-<br>
 src/mesa/drivers/dri/i965/<wbr>intel_mipmap_tree.c    | 165 ++++++++++++++++++++++-<br>
 src/mesa/drivers/dri/i965/<wbr>intel_mipmap_tree.h    |  53 ++++----<br>
 src/util/format_srgb.h                           |  14 ++<br>
 11 files changed, 233 insertions(+), 144 deletions(-)<br>
<span class="HOEnZb"><font color="#888888"><br>
--<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>