From fb49f1226df3aa88c08b0de849215b1f74e49d85 Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Thu, 9 Aug 2018 16:04:00 +0900 Subject: [PATCH] wsi: Modified to use tpl_display_get_with_backend_type. - This patch depends on libtpl-egl commit below. tpl_display: Added a new API to get existed display with backend type. Change-Id: I82f65da4f168f47b2669e5e82f92aae4e77968a0 Change-Id: I9c875c831f0f061c2e9ea80133f5dbed8fb3a415 Signed-off-by: Joonbum Ko --- src/wsi/wsi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wsi/wsi.h b/src/wsi/wsi.h index 7b59d14..88033c1 100644 --- a/src/wsi/wsi.h +++ b/src/wsi/wsi.h @@ -197,7 +197,7 @@ vk_get_tpl_display(VkIcdSurfaceBase *sfc) return NULL; } - tpl_display_t *display = tpl_display_get(native_dpy); + tpl_display_t *display = tpl_display_get_with_backend_type(type, native_dpy); if (display == NULL) display = tpl_display_create(type, native_dpy); -- 2.7.4