mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-03-28 07:58:59 -04:00
render/vulkan: compile against vulkan 1.2 header
Uses the EXT version of VK_PIPELINE_COMPILE_REQUIRED in `vulkan_strerror` func since it requires
Vulkan 1.3, switch to VK_EXT_global_priority instead of VK_KHR_global_priority which is only
promoted to core in Vulkan 1.3 as well.
(cherry picked from commit 413664e0b0)
This commit is contained in:
parent
2bfbec4af1
commit
a945fd8940
2 changed files with 7 additions and 7 deletions
|
|
@ -44,7 +44,7 @@ const char *vulkan_strerror(VkResult err) {
|
|||
ERR_STR(ERROR_INVALID_EXTERNAL_HANDLE);
|
||||
ERR_STR(ERROR_FRAGMENTATION);
|
||||
ERR_STR(ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS);
|
||||
ERR_STR(PIPELINE_COMPILE_REQUIRED);
|
||||
ERR_STR(PIPELINE_COMPILE_REQUIRED_EXT);
|
||||
ERR_STR(ERROR_SURFACE_LOST_KHR);
|
||||
ERR_STR(ERROR_NATIVE_WINDOW_IN_USE_KHR);
|
||||
ERR_STR(SUBOPTIMAL_KHR);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue