<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Nov 20, 2017 at 3:48 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:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail-HOEnZb"><div class="gmail-h5">On Mon, Nov 20, 2017 at 02:55:28PM -0800, Jason Ekstrand wrote:<br>
> On Mon, Nov 20, 2017 at 2:10 PM, Nanley Chery <<a href="mailto:nanleychery@gmail.com">nanleychery@gmail.com</a>> wrote:<br>
><br>
> > On Mon, Nov 20, 2017 at 01:54:39PM -0800, Nanley Chery wrote:<br>
> > > When sampling from fast-cleared sRGB textures on gen10, the hardware<br>
> > > will not decode the clear color to linear. We must therefore do it in<br>
> > > software.<br>
> > ><br>
> ><br>
> > I should've included the tests that are now passing (added in locally):<br>
> ><br>
> > * spec@arb_framebuffer_srgb@arb_<wbr>framebuffer_srgb-fast-clear-<wbr>blend<br>
> > * spec@arb_framebuffer_srgb@fbo-<wbr>fast-clear<br>
> > * spec@arb_framebuffer_srgb@<wbr>msaa-fast-clear<br>
> > * spec@ext_texture_srgb@fbo-<wbr>fast-clear<br>
> > * spec@ext_texture_srgb@<wbr>multisample-fast-clear gl_ext_texture_srgb<br>
> ><br>
> > -Nanley<br>
> ><br>
> > > Signed-off-by: Nanley Chery <<a href="mailto:nanley.g.chery@intel.com">nanley.g.chery@intel.com</a>><br>
> > > ---<br>
> > >  src/mesa/drivers/dri/i965/brw_<wbr>blorp.c            |  7 +++++<br>
> > >  src/mesa/drivers/dri/i965/brw_<wbr>meta_util.c        | 38<br>
> > ++++++++++++++++++++++++<br>
> > >  src/mesa/drivers/dri/i965/brw_<wbr>meta_util.h        |  5 ++++<br>
> > >  src/mesa/drivers/dri/i965/brw_<wbr>wm_surface_state.c |  9 +++++-<br>
> > >  4 files changed, 58 insertions(+), 1 deletion(-)<br>
> > ><br>
> > > diff --git a/src/mesa/drivers/dri/i965/<wbr>brw_blorp.c<br>
> > b/src/mesa/drivers/dri/i965/<wbr>brw_blorp.c<br>
> > > index 38284d3b85..b10e9b95b7 100644<br>
> > > --- a/src/mesa/drivers/dri/i965/<wbr>brw_blorp.c<br>
> > > +++ b/src/mesa/drivers/dri/i965/<wbr>brw_blorp.c<br>
> > > @@ -328,6 +328,13 @@ brw_blorp_blit_miptrees(struct brw_context *brw,<br>
> > >     struct blorp_surf src_surf, dst_surf;<br>
> > >     blorp_surf_for_miptree(brw, &src_surf, src_mt, src_aux_usage, false,<br>
> > >                            &src_level, src_layer, 1, &tmp_surfs[0]);<br>
> > > +   if (devinfo->gen >= 10 && isl_format_is_srgb(src_isl_<wbr>format) &&<br>
> > > +       src_clear_supported) {<br>
> > > +      src_surf.clear_color =<br>
> > > +         gen10_convert_srgb_fast_clear_<wbr>color(devinfo, src_isl_format,<br>
> > > +                                             src_mt->fast_clear_color);<br>
> > > +   }<br>
> > > +<br>
> > >     blorp_surf_for_miptree(brw, &dst_surf, dst_mt, dst_aux_usage, true,<br>
> > >                            &dst_level, dst_layer, 1, &tmp_surfs[1]);<br>
> > ><br>
> > > diff --git a/src/mesa/drivers/dri/i965/<wbr>brw_meta_util.c<br>
> > b/src/mesa/drivers/dri/i965/<wbr>brw_meta_util.c<br>
> > > index d292f5a8e2..97c6114f8a 100644<br>
> > > --- a/src/mesa/drivers/dri/i965/<wbr>brw_meta_util.c<br>
> > > +++ b/src/mesa/drivers/dri/i965/<wbr>brw_meta_util.c<br>
> > > @@ -28,6 +28,7 @@<br>
> > >  #include "brw_state.h"<br>
> > >  #include "main/blend.h"<br>
> > >  #include "main/fbobject.h"<br>
> > > +#include "main/format_utils.h"<br>
> > >  #include "util/format_srgb.h"<br>
> > ><br>
> > >  /**<br>
> > > @@ -315,6 +316,43 @@ brw_is_color_fast_clear_<wbr>compatible(struct<br>
> > brw_context *brw,<br>
> > >     return true;<br>
> > >  }<br>
> > ><br>
> > > +/* When sampling from fast-cleared sRGB textures on gen10, the hardware<br>
> > > + * will not decode the clear color to linear. We must therefore do it in<br>
> > > + * software.<br>
> > > + */<br>
> > > +union isl_color_value<br>
> > > +gen10_convert_srgb_fast_<wbr>clear_color(const struct gen_device_info<br>
> > *devinfo,<br>
> > > +                                    enum isl_format format,<br>
> > > +                                    const union isl_color_value color)<br>
> > > +{<br>
> > > +   assert(devinfo->gen >= 10);<br>
> > > +   assert(isl_format_is_srgb(<wbr>format));<br>
> > > +   assert(isl_format_supports_<wbr>ccs_d(devinfo, format));<br>
> > > +<br>
> > > +   /* All the CCS-supported sRGB textures in GL are 4-channel,<br>
> > 8-bit/channel,<br>
> > > +    * UNORM formats.<br>
> > > +    */<br>
> > > +   assert(isl_format_get_num_<wbr>channels(format) == 4);<br>
> > > +   assert(isl_format_channels_<wbr>have_size(format, 8));<br>
> > > +   assert(isl_format_has_unorm_<wbr>channel(format));<br>
> ><br>
><br>
> There are exactly 4 ISL formats which match this.  You could just assert<br>
> that it's one of the four and drop the other 5 asserts.  It doesn't really<br>
> matter, but this is rather complicated.<br>
><br>
><br>
<br>
</div></div>I agree. I'll fix this locally and send out a v2 after getting more of<br>
your feedback.<br>
<span class="gmail-"><br>
> > > +<br>
> > > +   /* According to do_single_blorp_clear(), fast-clears for<br>
> > texture-views are<br>
> > > +    * disabled. This means that we only have to do channel-to-channel<br>
> > format<br>
> > > +    * conversions.<br>
> > > +    */<br>
> > > +   union isl_color_value override_color = color;<br>
> > > +   for (unsigned i = 0; i < 3; i++) {<br>
> > > +      /* According to brw_is_color_fast_clear_<wbr>compatible(), only<br>
> > floating-point<br>
> > > +       * fast-clears have been enabled, so it is safe to rely on<br>
> > > +       * isl_color_value::f32.<br>
> > > +       */<br>
> ><br>
><br>
> There is no such thing as integer sRGB, it wouldn't even make sense.<br>
><br>
><br>
<br>
</span>Wouldn't we run into an issue if integer fast-clears are enabled and<br>
texture views of different formats are allowed to be fast-cleared? The<br>
specific example I have in mind is:<br>
* Fast clear an R8G8B8A8_UINT to (255,255,255,255)<br>
* Sample from the texture as SRGB8_ALPHA8<br>
<br>
We'd need to use the u32 and directly instead of doing the conversion<br>
with the f32. I hope I've explained that clearly.<span class="gmail-"><br></span></blockquote><div><br></div><div>Yes, but in that case, this function will have to change radically (if we keep it at all).<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="gmail-">
> > > +      const uint8_t srgb_unorm8 = _mesa_float_to_unorm(color.<wbr>f32[i],<br>
> > 8);<br>
> > > +      override_color.f32[i] =<br>
> > > +         util_format_srgb_8unorm_to_<wbr>linear_float(srgb_unorm8);<br>
> ><br>
><br>
> Any particular reason why you're going through 8-bit?  I can think of a few<br>
> reasons why you might but I don't know if any of them actually matter in<br>
> practice.<br>
><br>
><br>
<br>
</span>As opposed to writing util_format_srgb_to_linear_<wbr>float()? We should get<br>
the same result going through 8-bit and I did a quick skim of the repo<br>
and couldn't find any other potential users of<br>
util_format_srgb_to_linear_<wbr>float. I could write that if you'd like<br>
though.<span class="gmail-HOEnZb"><font color="#888888"><br></font></span></blockquote><div><br></div><div>I've got it in a branch somewhere...</div><div><br></div><div><a href="https://cgit.freedesktop.org/~jekstrand/mesa/commit/?h=wip/i965-packed-clear&id=e6208a8c195441b65e6da648203b332af4d0c0fb">https://cgit.freedesktop.org/~jekstrand/mesa/commit/?h=wip/i965-packed-clear&id=e6208a8c195441b65e6da648203b332af4d0c0fb</a></div><div><br></div><div>There it is.  I don't really care that much; laziness is as good a reason as any. :P<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="gmail-HOEnZb"><font color="#888888">
-Nanley<br>
</font></span><div class="gmail-HOEnZb"><div class="gmail-h5"><br>
> > > +   }<br>
> > > +   return override_color;<br>
> > > +}<br>
> > > +<br>
> > >  /**<br>
> > >   * Convert the given color to a bitfield suitable for ORing into DWORD<br>
> > 7 of<br>
> > >   * SURFACE_STATE (DWORD 12-15 on SKL+).<br>
> > > diff --git a/src/mesa/drivers/dri/i965/<wbr>brw_meta_util.h<br>
> > b/src/mesa/drivers/dri/i965/<wbr>brw_meta_util.h<br>
> > > index 4b3408df15..ee0b3bd3e1 100644<br>
> > > --- a/src/mesa/drivers/dri/i965/<wbr>brw_meta_util.h<br>
> > > +++ b/src/mesa/drivers/dri/i965/<wbr>brw_meta_util.h<br>
> > > @@ -42,6 +42,11 @@ brw_meta_mirror_clip_and_<wbr>scissor(const struct<br>
> > gl_context *ctx,<br>
> > >                                   GLfloat *dstX1, GLfloat *dstY1,<br>
> > >                                   bool *mirror_x, bool *mirror_y);<br>
> > ><br>
> > > +union isl_color_value<br>
> > > +gen10_convert_srgb_fast_<wbr>clear_color(const struct gen_device_info<br>
> > *devinfo,<br>
> > > +                                    enum isl_format format,<br>
> > > +                                    const union isl_color_value color);<br>
> > > +<br>
> > >  union isl_color_value<br>
> > >  brw_meta_convert_fast_clear_<wbr>color(const struct brw_context *brw,<br>
> > >                                    const struct intel_mipmap_tree *mt,<br>
> > > diff --git a/src/mesa/drivers/dri/i965/<wbr>brw_wm_surface_state.c<br>
> > b/src/mesa/drivers/dri/i965/<wbr>brw_wm_surface_state.c<br>
> > > index adf60a840b..315b96e9c4 100644<br>
> > > --- a/src/mesa/drivers/dri/i965/<wbr>brw_wm_surface_state.c<br>
> > > +++ b/src/mesa/drivers/dri/i965/<wbr>brw_wm_surface_state.c<br>
> > > @@ -51,6 +51,7 @@<br>
> > >  #include "intel_buffer_objects.h"<br>
> > ><br>
> > >  #include "brw_context.h"<br>
> > > +#include "brw_meta_util.h"<br>
> > >  #include "brw_state.h"<br>
> > >  #include "brw_defines.h"<br>
> > >  #include "brw_wm.h"<br>
> > > @@ -174,7 +175,13 @@ brw_emit_surface_state(struct brw_context *brw,<br>
> > >        /* We only really need a clear color if we also have an auxiliary<br>
> > >         * surface.  Without one, it does nothing.<br>
> > >         */<br>
> > > -      clear_color = mt->fast_clear_color;<br>
> > > +      if (devinfo->gen >= 10 && isl_format_is_srgb(view.<wbr>format)) {<br>
> > > +         clear_color =<br>
> > > +            gen10_convert_srgb_fast_clear_<wbr>color(devinfo, view.format,<br>
> > > +                                                mt->fast_clear_color);<br>
> > > +      } else {<br>
> > > +         clear_color = mt->fast_clear_color;<br>
> > > +      }<br>
> > >     }<br>
> > ><br>
> > >     void *state = brw_state_batch(brw,<br>
> > > --<br>
> > > 2.14.3<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>
> ><br>
</div></div></blockquote></div><br></div></div>