Click or drag to resize
Ab4d.SharpEngine logo

ImageUsageFlags Enumeration


Namespace: Ab4d.Vulkan
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 1.0.8740+deb2991acfe86a95cca780cd4f82bcae2805c1a5
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