aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharmaine Lee <[email protected]>2017-12-01 20:59:42 -0800
committerBrian Paul <[email protected]>2018-09-10 13:07:30 -0600
commit5f144441842c9833b0c04c8431fb259ff9d2a4e0 (patch)
treebc236c1b226993f62430a9a0bac3eb0f813cb118
parent026e1ad7bba6afa275903f108d9d99d0898eecde (diff)
svga: src surface for IntraSurfaceCopy cannot be multisample
Fixes SVGA Driver Errors with piglit test arb_copy_image-targets Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Neha Bhende <[email protected]>
-rw-r--r--src/gallium/drivers/svga/svga_pipe_blit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_pipe_blit.c b/src/gallium/drivers/svga/svga_pipe_blit.c
index a3579ba98c2..55eee9220bf 100644
--- a/src/gallium/drivers/svga/svga_pipe_blit.c
+++ b/src/gallium/drivers/svga/svga_pipe_blit.c
@@ -350,6 +350,10 @@ can_blit_via_intra_surface_copy(struct svga_context *svga,
if (!svga_have_vgpu10(svga))
return false;
+ /* src surface cannot be multisample */
+ if (blit_info->src.resource->nr_samples > 1)
+ return false;
+
if (!sws->have_intra_surface_copy)
return false;