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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user