tgfrerer / island

🌋🐎 Project Island is an experimental, hot-reloading Vulkan Renderer for Linux and Windows, written in C/C++.
MIT License
1.04k stars 42 forks source link

[readme] bump minimum vulkan-sdk version to 1.2.175 #37

Closed themancalledjakob closed 2 years ago

themancalledjakob commented 2 years ago

VK_MAKE_API_VERSION as used in le_instance_vk.cpp:448 was added in Vulkan-Header version 1.2.175

On Debian Bullseye for example we have version 1.2.162. Then we would be fine according to the readme, but we'd get an error like: island/modules/le_backend_vk/le_instance_vk.cpp:448:30: error: ‘VK_MAKE_API_VERSION’ was not declared in this scope; did you mean ‘VK_MAKE_VERSION’? 448 | .setApplicationVersion( VK_MAKE_API_VERSION( 0, 0, 0, 0 ) ) | ^~~~~~~~~~~~~~~~~~~ | VK_MAKE_VERSION

tgfrerer commented 2 years ago

great find! thank you :)