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;
  • deviceAddress is a buffer device address as returned by the vkGetBufferDeviceAddressKHR command.
  • hostAddress is a const host memory address.