- Posts: 6
[SOLVED] Can't compile with vulkan
- svmagong
-
Topic Author
- Offline
Less More
4 months 1 week ago #1 by svmagong
Can't compile with vulkan was created by svmagong
I am trying to build reshape from github source code. I found individual dependent modules but when it comes to vulkan, it failed:
reshade-main\source\vulkan\runtime_vk.hpp(14): fatal error C1083: Cannot open include file: 'vk_mem_alloc.h': No such file or directory
The vulkan SDK does not have this vk_mem_alloc.h available. Am I missing something here?
I downloaded vulkan latest windows SDK from here: https://vulkan.lunarg.com/sdk/home#windows, the version is 1.2.148.1 . Is this the right version to use?
Another minor issue for imgui: 'ImGuiWindowFlags_NoDocking' is not defined and I just ignored. Maybe the imgui version is also wrong? I got the source from Github.
reshade-main\source\vulkan\runtime_vk.hpp(14): fatal error C1083: Cannot open include file: 'vk_mem_alloc.h': No such file or directory
The vulkan SDK does not have this vk_mem_alloc.h available. Am I missing something here?
I downloaded vulkan latest windows SDK from here: https://vulkan.lunarg.com/sdk/home#windows, the version is 1.2.148.1 . Is this the right version to use?
Another minor issue for imgui: 'ImGuiWindowFlags_NoDocking' is not defined and I just ignored. Maybe the imgui version is also wrong? I got the source from Github.
Please Log in or Create an account to join the conversation.
- crosire
-
- Offline
Less More
- Posts: 3840
4 months 1 week ago - 4 months 1 week ago #2 by crosire
Replied by crosire on topic Can't compile with vulkan
You have not synced the Git submodules. Run these in the repository to do so:
git submodule init
git submodule update
git submodule init
git submodule update
Last edit: 4 months 1 week ago by crosire.
Please Log in or Create an account to join the conversation.