Make new 64-bit flag Bits enums explicitly uint64_t

This commit is contained in:
baldurk
2021-02-17 19:47:22 +00:00
parent 743bbb9aab
commit 7c0a7e7e71
+2 -2
View File
@@ -1562,11 +1562,11 @@ DECLARE_DESERIALISE_TYPE(VkPresentFrameTokenGGP);
// we add these fake enums so we have a type for type-dispatch in the serialiser. Due to C ABI rules
// the vulkan API doesn't define native 64-bit enums itself
enum VkAccessFlagBits2KHR
enum VkAccessFlagBits2KHR : uint64_t
{
};
enum VkPipelineStageFlagBits2KHR
enum VkPipelineStageFlagBits2KHR : uint64_t
{
};