Structures
VkDeviceOrHostAddressKHR
Union specifying a device or host address
The VkDeviceOrHostAddressKHR union is defined as:
typedef union VkDeviceOrHostAddressKHR {
VkDeviceAddress deviceAddress;
void* hostAddress;
} VkDeviceOrHostAddressKHR;
deviceAddressis a buffer device address as returned by the vkGetBufferDeviceAddressKHR command.hostAddressis a host memory address.