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