From: Mark Lobodzinski Date: Thu, 9 Apr 2015 23:46:33 +0000 (-0500) Subject: vulkan.h: v75. Add cube-compatible image create bit. Bug 13609 X-Git-Tag: upstream/1.1.92~5792 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b285a329ee9962822d20a7258abae3d3cb03eda9;p=platform%2Fupstream%2FVulkan-Tools.git vulkan.h: v75. Add cube-compatible image create bit. Bug 13609 Khronos SVN change #30288. Did not update version number. --- diff --git a/include/vulkan.h b/include/vulkan.h index 613952f..09a1461 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;