We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running vkcubeapp on Ubuntu 20 TTY, I get
/home/tcna/workspace-automation/app/Vulkan-Tools/cmake-build-debug-clang/cube/vkcubepp Selected WSI platform: display Signal: SIGSEGV (Segmentation fault)
Call stack
vkGetPhysicalDeviceDisplayPropertiesKHR 0x00007ffff7b42894 Demo::create_display_surface cube.cpp:3366 Demo::create_surface cube.cpp:1869 main cube.cpp:3830
gpu is NULL
Which indicates the gpu is not selected prior to calling create_display_surface
create_display_surface
The problem with select_physical_device is that it expects surface to be initialized; circular dependency.
select_physical_device
So in main vkcubeapp DisplayKHR WSI is broken. Other WSI platforms work fine.
main
Note that I did need to make a number of CMake mods in order to build it.
The text was updated successfully, but these errors were encountered:
#1060 should fix this issue.
Sorry, something went wrong.
No branches or pull requests
Running vkcubeapp on Ubuntu 20 TTY, I get
Call stack
gpu is NULL
Which indicates the gpu is not selected prior to calling
create_display_surface
The problem with
select_physical_device
is that it expects surface to be initialized; circular dependency.So in
main
vkcubeapp DisplayKHR WSI is broken. Other WSI platforms work fine.Note that I did need to make a number of CMake mods in order to build it.
The text was updated successfully, but these errors were encountered: