Updated Vulkan headers

This commit is contained in:
Sascha Willems 2023-08-01 18:07:27 +02:00
parent ae4ed5f9ad
commit 65ca947d0e
23 changed files with 1568 additions and 288 deletions

View file

@ -19,7 +19,12 @@ extern "C" {
// vulkan_video_codecs_common is a preprocessor guard. Do not pass it to API calls.
#define vulkan_video_codecs_common 1
#if !defined(VK_NO_STDINT_H)
#include <stdint.h>
#endif
#define VK_MAKE_VIDEO_STD_VERSION(major, minor, patch) \
((((uint32_t)(major)) << 22) | (((uint32_t)(minor)) << 12) | ((uint32_t)(patch)))