diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-16 16:38:23 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-17 15:32:11 -0600 |
| commit | 5170a0af7cdaf65dc8e1d9f2eb12a91dd40c05ee (patch) | |
| tree | 2494a2af9d71dfd5dff425353eb851cbf1b4d62a /include/vulkan.h | |
| parent | 5710854b03979d3d2d31682d2da1239d336f8d71 (diff) | |
| download | usermoji-5170a0af7cdaf65dc8e1d9f2eb12a91dd40c05ee.tar.xz | |
Bug 14318: Clarify image layout transitions in a RenderPass
merge request 337.
Diffstat (limited to 'include/vulkan.h')
| -rw-r--r-- | include/vulkan.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/vulkan.h b/include/vulkan.h index cd7bf257..01cbfec4 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -134,6 +134,7 @@ VK_DEFINE_NONDISP_HANDLE(VkCmdPool) #define VK_TRUE 1 #define VK_FALSE 0 #define VK_QUEUE_FAMILY_IGNORED (~0U) +#define VK_SUBPASS_EXTERNAL (~0U) #define VK_MAX_PHYSICAL_DEVICE_NAME 256 #define VK_UUID_LENGTH 16 #define VK_MAX_MEMORY_TYPES 32 @@ -1004,6 +1005,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; @@ -1898,6 +1904,7 @@ typedef struct { VkAttachmentStoreOp stencilStoreOp; VkImageLayout initialLayout; VkImageLayout finalLayout; + VkAttachmentDescriptionFlags flags; } VkAttachmentDescription; typedef struct { |
