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