Function Prototype
vkGetImageViewHandleNVX
Get the handle for an image view for a specific descriptor type
To get the handle for an image view, call:
uint32_t vkGetImageViewHandleNVX(
VkDevice device,
const VkImageViewHandleInfoNVX* pInfo);
pub fn get_image_view_handle_nvx(
device: vk::Device,
p_info: *const vk::ImageViewHandleInfoNVX,
) -> u32;
deviceis the logical device that owns the image view.pInfodescribes the image view to query and type of handle.
Valid Usage (Implicit)
VUID-vkGetImageViewHandleNVX-device-parameter
device must be a valid VkDevice handle
VUID-vkGetImageViewHandleNVX-pInfo-parameter
pInfo must be a valid pointer to a valid VkImageViewHandleInfoNVX structure
Parent
VK_NVX_image_view_handleType
Function Prototype