From ab18578b0306adb437ceb6f7ea510f42a8effae4 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 12 Apr 2017 11:00:39 -0700 Subject: [PATCH] anv: Only define wsi_cbs when VK_USE_PLATFORM_WAYLAND_KHR defined --- src/intel/vulkan/anv_wsi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/intel/vulkan/anv_wsi.c b/src/intel/vulkan/anv_wsi.c index 6ab0f20..ba66ea6 100644 --- a/src/intel/vulkan/anv_wsi.c +++ b/src/intel/vulkan/anv_wsi.c @@ -26,9 +26,11 @@ #include "vk_format_info.h" #include "util/vk_util.h" +#ifdef VK_USE_PLATFORM_WAYLAND_KHR static const struct wsi_callbacks wsi_cbs = { .get_phys_device_format_properties = anv_GetPhysicalDeviceFormatProperties, }; +#endif VkResult anv_init_wsi(struct anv_physical_device *physical_device) -- 2.7.4