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