Click or drag to resize
Ab4d.SharpEngine logo

MemoryPropertyFlags Enumeration


Namespace: Ab4d.Vulkan
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 1.0.8740+deb2991acfe86a95cca780cd4f82bcae2805c1a5
Syntax
C#
[FlagsAttribute]
public enum MemoryPropertyFlags
Members
Member nameValueDescription
None0 
DeviceLocal1If otherwise stated, then allocate memory on device
HostVisible2Memory is mappable by host
HostCoherent4Memory will have i/o coherency. If not set, application may need to use vkFlushMappedMemoryRanges and vkInvalidateMappedMemoryRanges to flush/invalidate host cache
HostCached8Memory will be cached by the host
LazilyAllocated16Memory may be allocated by the driver when it is required
Protected32 
See Also