Structures
VkImageViewAddressPropertiesNVX
Structure specifying the image view for handle queries
The VkImageViewAddressPropertiesNVX structure is defined as:
typedef struct VkImageViewAddressPropertiesNVX {
VkStructureType sType;
void* pNext;
VkDeviceAddress deviceAddress;
VkDeviceSize size;
} VkImageViewAddressPropertiesNVX;
pub struct ImageViewAddressPropertiesNVX {
s_type: vk::StructureType,
p_next: *mut c_void,
device_address: vk::DeviceAddress,
size: vk::DeviceSize,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.deviceAddressis the device address of the image view.sizeis the size in bytes of the image view device memory.
Valid Usage (Implicit)
VUID-VkImageViewAddressPropertiesNVX-sType-sType
sType must be VK_STRUCTURE_TYPE_IMAGE_VIEW_ADDRESS_PROPERTIES_NVX
VUID-VkImageViewAddressPropertiesNVX-pNext-pNext
pNext must be NULL
Parent
VK_NVX_image_view_handleType
Structures