mirror of
https://github.com/KhronosGroup/Vulkan-Headers.git
synced 2025-04-04 12:45:00 +00:00
GN build: Define VK_USE_PLATFORM_XLIB_KHR
This is required to define vkCreateXlibSurfaceKHR, which is required by GTK4. Depends on Dawn CL: https://dawn-review.googlesource.com/c/dawn/+/229494 Needed to fix this Chromium issue: https://g-issues.chromium.org/issues/345261080
This commit is contained in:
parent
952f776f65
commit
0f0cfd88d7
1 changed files with 4 additions and 1 deletions
5
BUILD.gn
5
BUILD.gn
|
@ -13,7 +13,10 @@ config("vulkan_headers_config") {
|
||||||
defines += [ "VK_USE_PLATFORM_WIN32_KHR" ]
|
defines += [ "VK_USE_PLATFORM_WIN32_KHR" ]
|
||||||
}
|
}
|
||||||
if (defined(vulkan_use_x11) && vulkan_use_x11) {
|
if (defined(vulkan_use_x11) && vulkan_use_x11) {
|
||||||
defines += [ "VK_USE_PLATFORM_XCB_KHR" ]
|
defines += [
|
||||||
|
"VK_USE_PLATFORM_XCB_KHR",
|
||||||
|
"VK_USE_PLATFORM_XLIB_KHR",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
if (defined(vulkan_use_wayland) && vulkan_use_wayland) {
|
if (defined(vulkan_use_wayland) && vulkan_use_wayland) {
|
||||||
defines += [ "VK_USE_PLATFORM_WAYLAND_KHR" ]
|
defines += [ "VK_USE_PLATFORM_WAYLAND_KHR" ]
|
||||||
|
|
Loading…
Add table
Reference in a new issue