From: Matt Turner Date: Wed, 12 Apr 2017 18:00:39 +0000 (-0700) Subject: anv: Only define wsi_cbs when VK_USE_PLATFORM_WAYLAND_KHR defined X-Git-Tag: upstream/17.1.0~256 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab18578b0306adb437ceb6f7ea510f42a8effae4;p=platform%2Fupstream%2Fmesa.git anv: Only define wsi_cbs when VK_USE_PLATFORM_WAYLAND_KHR defined --- 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)