Enum MemoryBlockAllocFlags
- Namespace
- PaintDotNet
- Assembly
- PaintDotNet.Core.dll
[Flags]
public enum MemoryBlockAllocFlags
Fields
Default = 0
Default flags for memory allocation. The memory block is guaranteed to be zero filled.
DoNotRequireZeroFill = 1
The block is not required to be zero-filled upon allocation. This can sometimes be beneficial to performance if you know you will be filling the block with data anyway (e.g., loading stuff from a file).