<p dir="ltr"></p>
<p dir="ltr">On Sep 23, 2016 10:14 PM, "Nanley Chery" <<a href="mailto:nanleychery@gmail.com">nanleychery@gmail.com</a>> wrote:<br>
><br>
> On Mon, Sep 12, 2016 at 05:58:21PM -0700, Jason Ekstrand wrote:<br>
> > HiZ buffers can be multisampled and, on BDW+, simply using interleaved<br>
><br>
> As stated in your comment in the second-to-last hunk, this is actually<br>
> true for all platforms pre-SKL.</p>
<p dir="ltr">Yup. I'll fix that</p>
<p dir="ltr">> > multisampling with a compression block size of 8x4 samples yields the<br>
> > correct HiZ surface size calculations.  Unfortunately, choose_msaa_layout<br>
> > was rejecting multisampled HiZ buffers because of format checks.  Now that<br>
> > we have a simple helper for determining if a format supports multisampling,<br>
> > that's an easy enough issue to fix.<br>
> ><br>
> > Signed-off-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>><br>
> > Reviewed-by: Chad Versace <<a href="mailto:chadversary@chromium.org">chadversary@chromium.org</a>><br>
> > ---<br>
> >  src/intel/isl/isl.c        | 4 +++-<br>
> >  src/intel/isl/isl_format.c | 9 ++++++++-<br>
> >  2 files changed, 11 insertions(+), 2 deletions(-)<br>
> ><br>
> > diff --git a/src/intel/isl/isl.c b/src/intel/isl/isl.c<br>
> > index 185984d..33d7079 100644<br>
> > --- a/src/intel/isl/isl.c<br>
> > +++ b/src/intel/isl/isl.c<br>
> > @@ -572,7 +572,6 @@ isl_calc_phys_level0_extent_sa(const struct isl_device *dev,<br>
> >           assert(info->depth == 1);<br>
> >           assert(info->levels == 1);<br>
> >           assert(isl_format_supports_multisampling(dev->info, info->format));<br>
> > -         assert(fmtl->bw == 1 && fmtl->bh == 1);<br>
> ><br>
> >           *phys_level0_sa = (struct isl_extent4d) {<br>
> >              .w = info->width,<br>
> > @@ -584,6 +583,9 @@ isl_calc_phys_level0_extent_sa(const struct isl_device *dev,<br>
> >           isl_msaa_interleaved_scale_px_to_sa(info->samples,<br>
> >                                               &phys_level0_sa->w,<br>
> >                                               &phys_level0_sa->h);<br>
> > +<br>
> > +         phys_level0_sa->w = isl_align(phys_level0_sa->w, fmtl->bw);<br>
> > +         phys_level0_sa->h = isl_align(phys_level0_sa->h, fmtl->bh);<br>
> >           break;<br>
> >        }<br>
> >        break;<br>
> > diff --git a/src/intel/isl/isl_format.c b/src/intel/isl/isl_format.c<br>
> > index f3429be..02df1ce 100644<br>
> > --- a/src/intel/isl/isl_format.c<br>
> > +++ b/src/intel/isl/isl_format.c<br>
> > @@ -444,10 +444,17 @@ isl_format_supports_multisampling(const struct brw_device_info *devinfo,<br>
> >      *       - any compressed texture format (BC*)<br>
> >      *       - any YCRCB* format<br>
> >      *<br>
> > -    * The restriction on the format's size is removed on Broadwell.<br>
> > +    * The restriction on the format's size is removed on Broadwell.  Also,<br>
> > +    * there is an exception for HiZ which we treat as a compressed format and<br>
> > +    * is allowed to be multisampled on Broadwell and earlier.<br>
> >      */<br>
> >     if (devinfo->gen < 8 && isl_format_get_layout(format)->bpb > 64) {<br>
> >        return false;<br>
> > +   } else if (format == ISL_FORMAT_HIZ) {<br>
><br>
> Because HiZ's bpb > 64, this if case should be moved up to handle the<br>
> pre-BDW platforms.</p>
<p dir="ltr">Drp... You are correct, sir. I'll get that patched up.</p>
<p dir="ltr">> > +      /* On SKL+, HiZ is always single-sampled even when the primary surface<br>
> > +       * is multisampled.  See also isl_surf_get_hiz_surf().<br>
> > +       */<br>
> > +      return devinfo->gen <= 8;<br>
> >     } else if (isl_format_is_compressed(format)) {<br>
> >        return false;<br>
> >     } else if (isl_format_is_yuv(format)) {<br>
> > --<br>
> > 2.5.0.400.gff86faf<br>
> ><br>
> > _______________________________________________<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">https://lists.freedesktop.org/mailman/listinfo/mesa-dev</a><br></p>