summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQiang Yu <yuq825@gmail.com>2022-02-11 15:01:25 +0800
committerDylan Baker <dylan.c.baker@intel.com>2022-02-24 14:56:51 -0800
commit0906f9f7d297a787587d281e92aa9f591541d5ad (patch)
tree9aafcdbb5ed29d54fcd5bd57b1895e7703608089
parent6353a869ca65d8d3c46f0a82c848fa7d409a87b9 (diff)
radeonsi: fix depth stencil multi sample texture blit
This causes the flushed_depth_texture is allocated without multi sample. So the blit will cause VM fault. cc: mesa-stable Reviewed-by: Marek Olšák <marek.olsak@amd.com> Signed-off-by: Qiang Yu <yuq825@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14990> (cherry picked from commit 80974a5f1e4095b7ae9b4e705da5b33f283e35c2)
-rw-r--r--.pick_status.json2
-rw-r--r--src/gallium/drivers/radeonsi/si_texture.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/.pick_status.json b/.pick_status.json
index e797ccc60d3..7b4fb310046 100644
--- a/.pick_status.json
+++ b/.pick_status.json
@@ -1057,7 +1057,7 @@
"description": "radeonsi: fix depth stencil multi sample texture blit",
"nominated": true,
"nomination_type": 0,
- "resolution": 0,
+ "resolution": 1,
"main_sha": null,
"because_sha": null
},
diff --git a/src/gallium/drivers/radeonsi/si_texture.c b/src/gallium/drivers/radeonsi/si_texture.c
index 752321f8644..f523ce424e8 100644
--- a/src/gallium/drivers/radeonsi/si_texture.c
+++ b/src/gallium/drivers/radeonsi/si_texture.c
@@ -1715,6 +1715,7 @@ bool si_init_flushed_depth_texture(struct pipe_context *ctx, struct pipe_resourc
resource.array_size = texture->array_size;
resource.last_level = texture->last_level;
resource.nr_samples = texture->nr_samples;
+ resource.nr_storage_samples = texture->nr_storage_samples;
resource.usage = PIPE_USAGE_DEFAULT;
resource.bind = texture->bind & ~PIPE_BIND_DEPTH_STENCIL;
resource.flags = texture->flags | SI_RESOURCE_FLAG_FLUSHED_DEPTH;