hwcontext_vulkan: avoid using 64-bit enums
MSVC (2016, but possibly more) still force enums to be basic ints.
This commit is contained in:
parent
238e11b71f
commit
3c831847a8
@ -38,7 +38,7 @@ typedef enum FFVulkanExtensions {
|
||||
FF_VK_EXT_EXTERNAL_WIN32_SEM = 1ULL << 7, /* VK_KHR_external_semaphore_win32 */
|
||||
#endif
|
||||
|
||||
FF_VK_EXT_NO_FLAG = 1ULL << 63,
|
||||
FF_VK_EXT_NO_FLAG = 1ULL << 31,
|
||||
} FFVulkanExtensions;
|
||||
|
||||
/* Macro containing every function that we utilize in our codebase */
|
||||
|
Loading…
x
Reference in New Issue
Block a user