From b285a329ee9962822d20a7258abae3d3cb03eda9 Mon Sep 17 00:00:00 2001 From: Mark Lobodzinski Date: Thu, 9 Apr 2015 18:46:33 -0500 Subject: [PATCH] vulkan.h: v75. Add cube-compatible image create bit. Bug 13609 Khronos SVN change #30288. Did not update version number. --- include/vulkan.h | 1 + 1 file changed, 1 insertion(+) 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; -- 2.7.4