From 7bc15090fcdc015891214c3f8c2d445707491951 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Mon, 5 Feb 2018 15:41:50 +0100 Subject: [PATCH] nvc0: disable MS Images for sample_count == 1 on Maxwell fixes KHR-GL45.multi_bind.dispatch_bind_textures on Maxwell Suggested-by: Ilia Mirkin Signed-off-by: Karol Herbst Reviewed-by: Ilia Mirkin --- src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index 322382adceb..225772cecef 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -88,7 +88,7 @@ nvc0_screen_is_format_supported(struct pipe_screen *pscreen, PIPE_BIND_SHARED); if (bindings & PIPE_BIND_SHADER_IMAGE) { - if (sample_count > 1 && + if (sample_count > 0 && nouveau_screen(pscreen)->class_3d >= GM107_3D_CLASS) { /* MS images are currently unsupported on Maxwell because they have to * be handled explicitly. */ -- 2.30.2