Function Prototype
vkCreateCudaFunctionNV
Creates a new CUDA function object
To create a CUDA function, call:
VkResult vkCreateCudaFunctionNV(
VkDevice device,
const VkCudaFunctionCreateInfoNV* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkCudaFunctionNV* pFunction);
pub fn create_cuda_function_nv(
device: vk::Device,
p_create_info: *const vk::CudaFunctionCreateInfoNV,
p_allocator: *const vk::AllocationCallbacks,
p_function: *mut vk::CudaFunctionNV,
) -> vk::Result;
deviceis the logical device that creates the shader module.pCreateInfois a pointer to a VkCudaFunctionCreateInfoNV structure.pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter.pFunctionis a pointer to a VkCudaFunctionNV handle in which the resulting CUDA function object is returned.
Valid Usage (Implicit)
VUID-vkCreateCudaFunctionNV-device-parameter
device must be a valid VkDevice handle
VUID-vkCreateCudaFunctionNV-pCreateInfo-parameter
pCreateInfo must be a valid pointer to a valid VkCudaFunctionCreateInfoNV structure
VUID-vkCreateCudaFunctionNV-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkCreateCudaFunctionNV-pFunction-parameter
pFunction must be a valid pointer to a VkCudaFunctionNV handle
VUID-vkCreateCudaFunctionNV-device-queuecount
The device must have been created with at least 1 queue
Parent
VK_NV_cuda_kernel_launchType
Function Prototype