From: Kenneth Graunke Date: Mon, 22 Jul 2019 23:53:32 +0000 (-0700) Subject: iris: Support storage images that have matching typed formats for reads X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7cdde962c5f65165e28cae92da57d2d6e4d7a740;p=mesa.git iris: Support storage images that have matching typed formats for reads Even if we don't directly support typed reads on a format, we can often translate them to a reasonable matching format. Advertise those too. --- diff --git a/src/gallium/drivers/iris/iris_formats.c b/src/gallium/drivers/iris/iris_formats.c index d5358e43fe1..51f8a73d1fc 100644 --- a/src/gallium/drivers/iris/iris_formats.c +++ b/src/gallium/drivers/iris/iris_formats.c @@ -470,9 +470,8 @@ iris_is_format_supported(struct pipe_screen *pscreen, */ supported &= sample_count == 0; - /* TODO: allow formats that only support untyped reads? */ - supported &= isl_format_supports_typed_reads(devinfo, format) && - isl_format_supports_typed_writes(devinfo, format); + supported &= isl_format_supports_typed_writes(devinfo, format); + supported &= isl_has_matching_typed_storage_image_format(devinfo, format); } if (usage & PIPE_BIND_SAMPLER_VIEW) {