Function Prototype
vkGetPipelineIndirectDeviceAddressNV
Get pipeline's 64-bit device address
To query a compute pipeline’s 64-bit device address, call:
VkDeviceAddress vkGetPipelineIndirectDeviceAddressNV(
VkDevice device,
const VkPipelineIndirectDeviceAddressInfoNV* pInfo);
pub fn get_pipeline_indirect_device_address_nv(
device: vk::Device,
p_info: *const vk::PipelineIndirectDeviceAddressInfoNV,
) -> vk::DeviceAddress;
deviceis the logical device on which the pipeline was created.pInfois a pointer to a VkPipelineIndirectDeviceAddressInfoNV structure specifying the pipeline to retrieve the address for.
Valid Usage
Valid Usage (Implicit)
VUID-vkGetPipelineIndirectDeviceAddressNV-device-parameter
device must be a valid VkDevice handle
VUID-vkGetPipelineIndirectDeviceAddressNV-pInfo-parameter
pInfo must be a valid pointer to a valid VkPipelineIndirectDeviceAddressInfoNV structure
Type
Function Prototype