Lines Matching defs:AttachmentLoadOp
5741 enum class AttachmentLoadOp
19641 AttachmentDescription( AttachmentDescriptionFlags flags_ = AttachmentDescriptionFlags(), Format format_ = Format::eUndefined, SampleCountFlagBits samples_ = SampleCountFlagBits::e1, AttachmentLoadOp loadOp_ = AttachmentLoadOp::eLoad, AttachmentStoreOp storeOp_ = AttachmentStoreOp::eStore, AttachmentLoadOp stencilLoadOp_ = AttachmentLoadOp::eLoad, AttachmentStoreOp stencilStoreOp_ = AttachmentStoreOp::eStore, ImageLayout initialLayout_ = ImageLayout::eUndefined, ImageLayout finalLayout_ = ImageLayout::eUndefined )
19682 AttachmentDescription& setLoadOp( AttachmentLoadOp loadOp_ )
19694 AttachmentDescription& setStencilLoadOp( AttachmentLoadOp stencilLoadOp_ )
19744 AttachmentLoadOp loadOp;
19746 AttachmentLoadOp stencilLoadOp;
33118 VULKAN_HPP_INLINE std::string to_string(AttachmentLoadOp value)
33122 case AttachmentLoadOp::eLoad: return "Load";
33123 case AttachmentLoadOp::eClear: return "Clear";
33124 case AttachmentLoadOp::eDontCare: return "DontCare";