diff options
author | Chad Versace <[email protected]> | 2015-10-07 10:44:40 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2015-10-07 10:44:40 -0700 |
commit | a3bc07c23b4381aa91569937636e47ead112cf3c (patch) | |
tree | e26ccfce1073be566bd7d93a930019ba59c24774 /include | |
parent | 82259f88ddc862190b2e822f0f4b87b106e161fa (diff) |
vk/0.170.2: Update VkAttachmentDescription
Diffstat (limited to 'include')
-rw-r--r-- | include/vulkan/vulkan.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 19916a14526..00dbf3dd69c 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1019,6 +1019,11 @@ typedef enum { typedef VkFlags VkShaderStageFlags; typedef enum { + VK_ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT = 0x00000001, +} VkAttachmentDescriptionFlagBits; +typedef VkFlags VkAttachmentDescriptionFlags; + +typedef enum { VK_SUBPASS_DESCRIPTION_NO_OVERDRAW_BIT = 0x00000001, } VkSubpassDescriptionFlagBits; typedef VkFlags VkSubpassDescriptionFlags; @@ -1888,6 +1893,7 @@ typedef struct { VkAttachmentStoreOp stencilStoreOp; VkImageLayout initialLayout; VkImageLayout finalLayout; + VkAttachmentDescriptionFlags flags; } VkAttachmentDescription; typedef struct { |