summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_wsi_wayland.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2016-10-14 06:36:17 +0100
committerDave Airlie <airlied@redhat.com>2016-10-19 10:15:43 +1000
commitec0bc14a700c2503d834ac0763f4cfbe312998fa (patch)
treeceb16baecd0050bf6ade26e6aec9f425bdbe2b31 /src/intel/vulkan/anv_wsi_wayland.c
parent971523410fd2235e13c617b6a1569f70486258d7 (diff)
downloadexternal_mesa3d-ec0bc14a700c2503d834ac0763f4cfbe312998fa.zip
external_mesa3d-ec0bc14a700c2503d834ac0763f4cfbe312998fa.tar.gz
external_mesa3d-ec0bc14a700c2503d834ac0763f4cfbe312998fa.tar.bz2
anv/wsi: remove all anv references from WSI common code
the WSI code should be now be clean for sharing. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'src/intel/vulkan/anv_wsi_wayland.c')
-rw-r--r--src/intel/vulkan/anv_wsi_wayland.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_wsi_wayland.c b/src/intel/vulkan/anv_wsi_wayland.c
index 293838a..5d49671 100644
--- a/src/intel/vulkan/anv_wsi_wayland.c
+++ b/src/intel/vulkan/anv_wsi_wayland.c
@@ -27,8 +27,8 @@
#include "vk_format_info.h"
#include <util/hash_table.h>
-#include "anv_private.h"
#include "wsi_common_wayland.h"
+#include "anv_private.h"
VkBool32 anv_GetPhysicalDeviceWaylandPresentationSupportKHR(
VkPhysicalDevice physicalDevice,
@@ -55,5 +55,5 @@ VkResult anv_CreateWaylandSurfaceKHR(
else
alloc = &instance->alloc;
- return anv_create_wl_surface(alloc, pCreateInfo, pSurface);
+ return wsi_create_wl_surface(alloc, pCreateInfo, pSurface);
}