From 50a132cb9d3532f1c992d8f038a4854d78f74418 Mon Sep 17 00:00:00 2001 From: "deasung.kim" Date: Fri, 15 Apr 2016 13:35:20 +0900 Subject: [PATCH] surface: use vk_get_tpl_display instead of tpl_display_get Change-Id: I01213f16f87a11d1ebdd9d2b9e8fe85e8b68b421 --- src/wsi/surface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wsi/surface.c b/src/wsi/surface.c index b3dff9d..1636268 100644 --- a/src/wsi/surface.c +++ b/src/wsi/surface.c @@ -55,8 +55,8 @@ vk_GetPhysicalDeviceSurfaceCapabilitiesKHR(VkPhysicalDevice pdev, VK_CHECK(sfc->base.platform == VK_ICD_WSI_PLATFORM_WAYLAND, return VK_ERROR_DEVICE_LOST, "Not supported platform surface.\n"); - display = tpl_display_get(sfc->display); - VK_CHECK(display, return VK_ERROR_DEVICE_LOST, "tpl_display_get() failed.\n"); + display = vk_get_tpl_display(sfc->display); + VK_CHECK(display, return VK_ERROR_DEVICE_LOST, "vk_get_tpl_display() failed.\n"); #if 0 res = tpl_surface_query_supported_buffer_count(sfc->tpl.surface, &min, &max); -- 2.7.4