'vk_video/vulkan_video_codec_vp9std.h' file not found
I have a C++ application with the following CMake configuration:
```
FetchContent_Declare(glad GIT_REPOSITORY https://github.com/Dav1dde/glad.git GIT_TAG glad2 SOURCE_SUBDIR cmake)
FetchContent_MakeAvailable(glad)
glad_add_library(vulkan STATIC API vulkan=1.4)
```
Then I use target_link_libraries() with vulkan.
<img width="536" height="76" alt="Image" src="https://github.com/user-attachments/assets/3e227c1a-de38-4653-b740-a6c378a9fd27" />
This setup worked when I used OpenGL.
However, it seems like the file vk_video/vulkan_video_codec_vp9std.h is not being generated.
I also checked the website (https://gen.glad.sh/) to confirm, and it didn’t generate that file either.
Is there a way to exclude certain extensions from being enabled?
0 条评论