unplugged-vendor/device/generic/vulkan-cereal/protocols/vulkan/api/structs/VkAttachmentDescription.txt

17 lines
656 B
Plaintext

// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry
[[VkAttachmentDescription,VkAttachmentDescription]]
[source,c++]
----
typedef struct VkAttachmentDescription {
VkAttachmentDescriptionFlags flags;
VkFormat format;
VkSampleCountFlagBits samples;
VkAttachmentLoadOp loadOp;
VkAttachmentStoreOp storeOp;
VkAttachmentLoadOp stencilLoadOp;
VkAttachmentStoreOp stencilStoreOp;
VkImageLayout initialLayout;
VkImageLayout finalLayout;
} VkAttachmentDescription;
----