Click or drag to resize
Ab4d.SharpEngine logo

MemoryPropertyFlags Enumeration

[Missing <summary> documentation for "T:Ab4d.Vulkan.MemoryPropertyFlags"]


Namespace: Ab4d.Vulkan
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.1.9316+94bbd23b55747f096f056a5602f7dd90558b3673
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 
Remarks

[Missing <remarks> documentation for "T:Ab4d.Vulkan.MemoryPropertyFlags"]

See Also