[Mesa-dev] [PATCH 14/16] i965/icl: Disable HiZ surface sampling

Kenneth Graunke kenneth at whitecape.org
Wed Feb 14 00:25:42 UTC 2018


On Tuesday, February 13, 2018 11:15:14 AM PST Anuj Phogat wrote:
> On gen11+ AUX_HIZ is not a supported value for surfaces being
> sampled by the 3D sampler.
> 
> Signed-off-by: Anuj Phogat <anuj.phogat at gmail.com>
> ---
>  src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
> index f27d559149..9c6f166677 100644
> --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
> +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
> @@ -1912,9 +1912,10 @@ intel_miptree_sample_with_hiz(struct brw_context *brw,
>     const struct gen_device_info *devinfo = &brw->screen->devinfo;
>  
>     /* It's unclear how well supported sampling from the hiz buffer is on GEN8,
> -    * so keep things conservative for now and never enable it unless we're SKL+.
> +    * so keep things conservative for now and never enable it unless we're GEN9+.
> +    * Also, disable the sampling from the hiz buffer for GEN11+.
>      */
> -   if (devinfo->gen < 9) {
> +   if (devinfo->gen < 9 || devinfo->gen > 10) {
>        return false;
>     }

Sad to see this go :(

I think we should add a devinfo->has_aux_hiz boolean, set it on Gen9-10,
leave it false on Gen8 with this "it's unclear how well supported..."
comment, then change this code to use the flag.

That will disable it for Gen11 but gives us a bit more flexibility.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: This is a digitally signed message part.
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20180213/af0f593e/attachment.sig>


More information about the mesa-dev mailing list