1 /* 2 * Copyright © 2024 Valve Corporation 3 * SPDX-License-Identifier: MIT 4 */ 5 6 #ifndef VK_RADIX_SORT_U64 7 #define VK_RADIX_SORT_U64 8 9 #include "radix_sort_vk.h" 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 radix_sort_vk_t * 16 vk_create_radix_sort_u64(VkDevice device, VkAllocationCallbacks const *ac, 17 VkPipelineCache pc, 18 struct radix_sort_vk_target_config config); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif 25