OSDN Git Service

vk/0.170.2: Update VkAttachmentDescription
authorChad Versace <chad.versace@intel.com>
Wed, 7 Oct 2015 17:44:40 +0000 (10:44 -0700)
committerChad Versace <chad.versace@intel.com>
Wed, 7 Oct 2015 17:44:40 +0000 (10:44 -0700)
include/vulkan/vulkan.h

index 19916a1..00dbf3d 100644 (file)
@@ -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 {