diff options
Diffstat (limited to 'src/gallium/drivers/iris')
-rw-r--r-- | src/gallium/drivers/iris/iris_formats.c | 5 |
1 files changed, 2 insertions, 3 deletions
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) { |