Enum
VkInternalAllocationType
Allocation type
The allocationType parameter to the pfnInternalAllocation and
pfnInternalFree functions may be one of the following values:
typedef enum VkInternalAllocationType {
VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE = 0,
} VkInternalAllocationType;
pub struct InternalAllocationType(u32);
impl InternalAllocationType {
pub const EXECUTABLE: Self = 0;
}
VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLEspecifies that the allocation is intended for execution by the host.
Parent
VK_VERSION_1_0Type
Enum