Skip to content
Snippets Groups Projects
Commit 5b50e6a7 authored by Dave Airlie's avatar Dave Airlie Committed by Emil Velikov
Browse files

radv: use 3d shader for gfx9 copies if dst is 3d


This fixes some crucible 3d miptree tests I've been working on
when executed using the compute shader path.

Fixes: d08f2678 (radv/gfx9: fix 3d image to image transfers on compute queues.)
Reviewed-by: default avatarSamuel Pitoiset <samuel.pitoiset@gmail.com>
(cherry picked from commit 1363a47c)
parent 5594bb58
No related branches found
No related tags found
No related merge requests found
......@@ -2061,7 +2061,7 @@ radv_meta_image_to_image_cs(struct radv_cmd_buffer *cmd_buffer,
itoi_bind_descriptors(cmd_buffer, &src_view, &dst_view);
if (device->physical_device->rad_info.chip_class >= GFX9 &&
src->image->type == VK_IMAGE_TYPE_3D)
(src->image->type == VK_IMAGE_TYPE_3D || dst->image->type == VK_IMAGE_TYPE_3D))
pipeline = cmd_buffer->device->meta_state.itoi.pipeline_3d;
radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer),
VK_PIPELINE_BIND_POINT_COMPUTE, pipeline);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment