Function Prototype
vkGetImageViewAddressNVX
Get the device address of an image view
To get the device address for an image view, call:
VkResult vkGetImageViewAddressNVX(
VkDevice device,
VkImageView imageView,
VkImageViewAddressPropertiesNVX* pProperties);
pub fn get_image_view_address_nvx(
device: vk::Device,
image_view: vk::ImageView,
p_properties: *mut vk::ImageViewAddressPropertiesNVX,
) -> vk::Result;
deviceis the logical device that owns the image view.imageViewis a handle to the image view.pPropertiescontains the device address and size when the call returns.
Valid Usage (Implicit)
VUID-vkGetImageViewAddressNVX-device-parameter
device must be a valid VkDevice handle
VUID-vkGetImageViewAddressNVX-imageView-parameter
imageView must be a valid VkImageView handle
VUID-vkGetImageViewAddressNVX-pProperties-parameter
pProperties must be a valid pointer to a VkImageViewAddressPropertiesNVX structure
VUID-vkGetImageViewAddressNVX-imageView-parent
imageView must have been created, allocated, or retrieved from device
Parent
VK_NVX_image_view_handleType
Function Prototype