Enum AllocFlags

Flags controlling an allocation of memory

enum AllocFlags : int { ... }

Enum members

NameDescription
dedicated Set to force the creation of a new DeviceMemory, that will be dedicated for the allocation.
neverAllocate Set to prohib the creation of a new DeviceMemory. This forces the use of an existing chunk, and fails if it cannot find one.
none default behavior, no flags.