Structures
VkHostAddressRangeEXT
Structure specifying a host address range
A host address range indicates a range of host memory.
typedef struct VkHostAddressRangeEXT {
void* address;
size_t size;
} VkHostAddressRangeEXT;
pub struct HostAddressRangeEXT {
address: *mut c_void,
size: usize,
}
addressis a host memory address.sizeis the size of the range.
Valid Usage (Implicit)
VUID-VkHostAddressRangeEXT-address-parameter
address must be a valid pointer to an array of size bytes
VUID-VkHostAddressRangeEXT-size-arraylength
size must be greater than 0
Parent
VK_EXT_descriptor_heapType
Structures