summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2020-06-19 16:56:36 +1000
committerDave Airlie <airlied@redhat.com>2020-08-31 13:20:11 +1000
commit6d60cd44f3fc9fbecee3e6f587eaa0c08ccdf3de (patch)
treeac9c2ba0627b39d271853089ba6092099c8b7a40
parent2d6385715da3368597671046368ff4fe11c1ca8e (diff)
llvmpipe: add array/3d clearing support
Fixes: dEQP-VK.pipeline.multisample.sampled_image.64x64_4.*.samples_4 Reviewed-by: Roland Scheidegger <sroland@vmware.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6381>
-rw-r--r--src/gallium/drivers/llvmpipe/lp_surface.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_surface.c b/src/gallium/drivers/llvmpipe/lp_surface.c
index 2a60d86c996..af8ada4d39b 100644
--- a/src/gallium/drivers/llvmpipe/lp_surface.c
+++ b/src/gallium/drivers/llvmpipe/lp_surface.c
@@ -313,6 +313,10 @@ llvmpipe_clear_render_target(struct pipe_context *pipe,
if (dst->texture->nr_samples > 1) {
struct pipe_box box;
u_box_2d(dstx, dsty, width, height, &box);
+ if (dst->texture->target != PIPE_BUFFER) {
+ box.z = dst->u.tex.first_layer;
+ box.depth = dst->u.tex.last_layer - dst->u.tex.first_layer + 1;
+ }
for (unsigned s = 0; s < util_res_sample_count(dst->texture); s++) {
lp_clear_color_texture_msaa(pipe, dst->texture, dst->format,
color, s, &box);
@@ -378,6 +382,10 @@ llvmpipe_clear_depth_stencil(struct pipe_context *pipe,
uint64_t zstencil = util_pack64_z_stencil(dst->format, depth, stencil);
struct pipe_box box;
u_box_2d(dstx, dsty, width, height, &box);
+ if (dst->texture->target != PIPE_BUFFER) {
+ box.z = dst->u.tex.first_layer;
+ box.depth = dst->u.tex.last_layer - dst->u.tex.first_layer + 1;
+ }
for (unsigned s = 0; s < util_res_sample_count(dst->texture); s++)
lp_clear_depth_stencil_texture_msaa(pipe, dst->texture,
dst->format, clear_flags,