Browse Source

anv: resolve wayland-only build

Ensure that the final X11/XCB hunk is guarded by the correct macro.
Otherwise we'll require the symbol even when building without said
platform.

Cc: Cedric Sodhi <manday@openmail.cc>
Reported-by: Cedric Sodhi <manday@openmail.cc>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
tags/12.0-branchpoint
Emil Velikov 9 years ago
parent
commit
93e65fdcac
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      src/intel/vulkan/anv_wsi.c

+ 2
- 0
src/intel/vulkan/anv_wsi.c View File

@@ -39,7 +39,9 @@ anv_init_wsi(struct anv_physical_device *physical_device)
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
result = anv_wl_init_wsi(physical_device);
if (result != VK_SUCCESS) {
#ifdef VK_USE_PLATFORM_XCB_KHR
anv_x11_finish_wsi(physical_device);
#endif
return result;
}
#endif

Loading…
Cancel
Save