From aed1f7ad34619de9c41a529627babc857eac9a97 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Thu, 12 Sep 2019 21:57:00 -0400 Subject: [PATCH] radeonsi: enable MSAA shader images Acked-by: Pierre-Eric Pelloux-Prayer --- src/gallium/drivers/radeonsi/si_state.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index e188ea6b35c..783ede89d0d 100644 --- a/src/gallium/drivers/radeonsi/si_state.c +++ b/src/gallium/drivers/radeonsi/si_state.c @@ -2252,9 +2252,6 @@ static bool si_is_format_supported(struct pipe_screen *screen, if (!screen->get_param(screen, PIPE_CAP_TEXTURE_MULTISAMPLE)) return false; - if (usage & PIPE_BIND_SHADER_IMAGE) - return false; - /* Only power-of-two sample counts are supported. */ if (!util_is_power_of_two_or_zero(sample_count) || !util_is_power_of_two_or_zero(storage_sample_count)) -- 2.30.2