1 /* 2 * Copyright © 2022 Konstantin Seurer 3 * 4 * SPDX-License-Identifier: MIT 5 */ 6 7 #ifndef RADV_RADIX_SORT_H 8 #define RADV_RADIX_SORT_H 9 10 #include "radix_sort_vk_devaddr.h" 11 12 radix_sort_vk_t *radv_create_radix_sort_u64(VkDevice device, VkAllocationCallbacks const *ac, VkPipelineCache pc); 13 14 #endif 15