Skip to content

Commit f9ab7c2

Browse files
committed
add pipeline cache flag bits in simplevk.h
1 parent aaaf1db commit f9ab7c2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/simplevk.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1097,6 +1097,12 @@ typedef enum VkCommandBufferResetFlagBits
10971097
} VkCommandBufferResetFlagBits;
10981098
typedef VkFlags VkCommandBufferResetFlags;
10991099

1100+
typedef enum VkPipelineCacheCreateFlagBits {
1101+
VK_PIPELINE_CACHE_CREATE_EXTERNALLY_SYNCHRONIZED_BIT = 0x00000001,
1102+
VK_PIPELINE_CACHE_CREATE_INTERNALLY_SYNCHRONIZED_MERGE_BIT_KHR = 0x00000008,
1103+
VK_PIPELINE_CACHE_CREATE_EXTERNALLY_SYNCHRONIZED_BIT_EXT = VK_PIPELINE_CACHE_CREATE_EXTERNALLY_SYNCHRONIZED_BIT,
1104+
} VkPipelineCacheCreateFlagBits;
1105+
11001106
typedef struct VkApplicationInfo
11011107
{
11021108
VkStructureType sType;

0 commit comments

Comments
 (0)