diff options
author | Karol Herbst <[email protected]> | 2018-02-05 15:41:50 +0100 |
---|---|---|
committer | Karol Herbst <[email protected]> | 2018-02-15 11:14:46 +0100 |
commit | 7bc15090fcdc015891214c3f8c2d445707491951 (patch) | |
tree | 1e8d0f7db03bdff71eabb6303e153e5c39b94af7 /src/gallium/drivers/nouveau | |
parent | c6694793e1148f920a94eb54db11cead1662c2da (diff) |
nvc0: disable MS Images for sample_count == 1 on Maxwell
fixes KHR-GL45.multi_bind.dispatch_bind_textures on Maxwell
Suggested-by: Ilia Mirkin <[email protected]>
Signed-off-by: Karol Herbst <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |