Module: Mesa Branch: main Commit: 320e20db6834cf793e7019a862bf1a9d622da4d0 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=320e20db6834cf793e7019a862bf1a9d622da4d0
Author: Timur Kristóf <[email protected]> Date: Tue Sep 26 11:34:42 2023 +0200 radv: Rename SDMA file to radv_sdma.c It already contains more than just the buffer image copies. Signed-off-by: Timur Kristóf <[email protected]> Reviewed-by: Samuel Pitoiset <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25770> --- src/amd/vulkan/meson.build | 2 +- src/amd/vulkan/{radv_sdma_copy_image.c => radv_sdma.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/meson.build b/src/amd/vulkan/meson.build index d1c41726693..8de1ccc9d74 100644 --- a/src/amd/vulkan/meson.build +++ b/src/amd/vulkan/meson.build @@ -124,7 +124,7 @@ libradv_files = files( 'radv_rt_common.c', 'radv_rt_shader.c', 'radv_sampler.c', - 'radv_sdma_copy_image.c', + 'radv_sdma.c', 'radv_shader.c', 'radv_shader.h', 'radv_shader_args.c', diff --git a/src/amd/vulkan/radv_sdma_copy_image.c b/src/amd/vulkan/radv_sdma.c similarity index 100% rename from src/amd/vulkan/radv_sdma_copy_image.c rename to src/amd/vulkan/radv_sdma.c
