Click or drag to resize
Ab4d.SharpEngine logo

ImageUsageFlags Enumeration


Namespace: Ab4d.Vulkan
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 2.0.8956+4c7684e186ca1be74e7a284fbe739d9a1b843d3c
Syntax
C#
[FlagsAttribute]
public enum ImageUsageFlags
Members
Member nameValueDescription
None0 
TransferSrc1Can be used as a source of transfer operations
TransferDst2Can be used as a destination of transfer operations
Sampled4Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)
Storage8Can be used as storage image (STORAGE_IMAGE descriptor type)
ColorAttachment16Can be used as framebuffer color attachment
DepthStencilAttachment32Can be used as framebuffer depth/stencil attachment
TransientAttachment64Image data not needed outside of rendering
InputAttachment128Can be used as framebuffer input attachment
See Also