vulkan: Fix the argument order of update_as

Also moves the src argument before dst which is more consistent.

Reviewed-by: Friedrich Vock <friedrich.vock@gmx.de>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32488>
This commit is contained in:
Konstantin
2024-12-04 18:07:51 +01:00
committed by Marge Bot
parent 3bff52da4e
commit 815ca049cd
2 changed files with 3 additions and 3 deletions
@@ -89,8 +89,8 @@ struct vk_acceleration_structure_build_ops {
const VkAccelerationStructureBuildGeometryInfoKHR *build_info,
const VkAccelerationStructureBuildRangeInfoKHR *build_range_infos,
uint32_t leaf_count,
struct vk_acceleration_structure *dst,
struct vk_acceleration_structure *src);
struct vk_acceleration_structure *src,
struct vk_acceleration_structure *dst);
};
struct vk_acceleration_structure_build_args {