forked from FFmpeg/FFmpeg
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
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ typedef enum FFVulkanExtensions {
|
||||||
FF_VK_EXT_EXTERNAL_WIN32_SEM = 1ULL << 7, /* VK_KHR_external_semaphore_win32 */
|
FF_VK_EXT_EXTERNAL_WIN32_SEM = 1ULL << 7, /* VK_KHR_external_semaphore_win32 */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
FF_VK_EXT_NO_FLAG = 1ULL << 63,
|
FF_VK_EXT_NO_FLAG = 1ULL << 31,
|
||||||
} FFVulkanExtensions;
|
} FFVulkanExtensions;
|
||||||
|
|
||||||
/* Macro containing every function that we utilize in our codebase */
|
/* Macro containing every function that we utilize in our codebase */
|
||||||
|
|
Loading…
Add table
Reference in a new issue