aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2015-04-09 18:46:33 -0500
committerChia-I Wu <olv@lunarg.com>2015-04-16 17:48:19 +0800
commitb285a329ee9962822d20a7258abae3d3cb03eda9 (patch)
tree0dbd18eb284c94f842c13acd4bb4854f84925523
parentac7c6554d30612220f7887a10ac7ec79fd6a992b (diff)
downloadusermoji-b285a329ee9962822d20a7258abae3d3cb03eda9.tar.xz
vulkan.h: v75. Add cube-compatible image create bit. Bug 13609
Khronos SVN change #30288. Did not update version number.
-rw-r--r--include/vulkan.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vulkan.h b/include/vulkan.h
index 613952f5..09a14611 100644
--- a/include/vulkan.h
+++ b/include/vulkan.h
@@ -1204,6 +1204,7 @@ typedef enum VkImageCreateFlags_
VK_IMAGE_CREATE_SHAREABLE_BIT = 0x00000004,
VK_IMAGE_CREATE_SPARSE_BIT = 0x00000008,
VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT = 0x00000010, // Allows image views to have different format than the base image
+ VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT = 0x00000020, // Allows creating image views with cube type from the created image
VK_MAX_ENUM(VkImageCreateFlags_)
} VkImageCreateFlags;