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