You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I also notice that, if I create a VkInstance with the Application API Version set to Vulkan 1.2 or lower (even if I generate for Vulkan 1.3 on glad), the problem suddenly disappears.
Following code change fixes the issue, but restricts usage to Vulkan <=1.2:
appInfo.apiVersion=VK_API_VERSION_1_2;
I couldn't figure out what specifically made it work on Vulkan 1.2, but I applied no other changes.
EDIT:
On Android (Android 14) it fails on exactly the same function call on any selected VK_API_VERSION_1_*
The text was updated successfully, but these errors were encountered:
API: Vulkan 1.3
Windowing Library: SDL2
Build System Generator: CMake
During the Vulkan Setup Process, I encounter an issue with Surface related vk functions.
This particular function causes a Segmentation Fault:
I generate the glad library with CMake:
It works, if I use the system-wide Vulkan package instead without applying the glad load functions, so it's probably related to missing symbols:
Here is a summarized overview of the Vulkan Setup Process:
I also notice that, if I create a VkInstance with the Application API Version set to Vulkan 1.2 or lower (even if I generate for Vulkan 1.3 on glad), the problem suddenly disappears.
Following code change fixes the issue, but restricts usage to Vulkan <=1.2:
I couldn't figure out what specifically made it work on Vulkan 1.2, but I applied no other changes.
EDIT:
On Android (Android 14) it fails on exactly the same function call on any selected VK_API_VERSION_1_*
The text was updated successfully, but these errors were encountered: