From 0b0c941d755f53cb8930fb3783a87c2351340e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timur=20Krist=C3=B3f?= Date: Thu, 15 Dec 2022 15:34:49 +0100 Subject: [PATCH] radv: Rename radv_update_ace_preambles to radv_update_gang_preambles. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new name reflects more accurately what this is. Signed-off-by: Timur Kristóf Reviewed-by: Bas Nieuwenhuizen Part-of: --- src/amd/vulkan/radv_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 6e5bd7715d7..bf15ee80458 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -5387,7 +5387,7 @@ radv_update_preambles(struct radv_queue_state *queue, struct radv_device *device } static VkResult -radv_update_ace_preambles(struct radv_queue *queue) +radv_update_gang_preambles(struct radv_queue *queue) { if (!radv_queue_init_ace_internal_state(queue)) return VK_ERROR_OUT_OF_HOST_MEMORY; @@ -5473,7 +5473,7 @@ radv_queue_submit_normal(struct radv_queue *queue, struct vk_queue_submit *submi /* TODO: chaining with gang submit. */ can_patch = false; - result = radv_update_ace_preambles(queue); + result = radv_update_gang_preambles(queue); if (result != VK_SUCCESS) return result; }