From 26fea8827c2e86b02f41833b3432d7243d6dfead Mon Sep 17 00:00:00 2001 From: Petros Bantolas Date: Thu, 14 Apr 2016 12:50:42 +0100 Subject: loader: Added some missing function entry points to loader_icd_init_entrys. KHR_surface, KHR_display extension functions were not exposed properly. Specifically, added LOOKUP_GIPA entries for: * GetPhysicalDeviceDisplayPropertiesKHR * GetDisplayModePropertiesKHR * CreateDisplayPlaneSurfaceKHR * GetPhysicalDeviceDisplayPlanePropertiesKHR * GetDisplayPlaneSupportedDisplaysKHR * CreateDisplayModeKHR * GetDisplayPlaneCapabilitiesKHR * DestroySurfaceKHR Added missing function declaration DestroySurfaceKHR in loader_icd struct. Checking if KHR_surface extension is enabled before proceeding in the terminator_CreateDisplayPlaneSurfaceKHR definition. Change-Id: I0599efddedc5064859ae1f4e52bdbbf8788d5c12 --- loader/loader.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'loader/loader.h') diff --git a/loader/loader.h b/loader/loader.h index b29c4506..1971fad0 100644 --- a/loader/loader.h +++ b/loader/loader.h @@ -259,6 +259,8 @@ struct loader_icd { GetDisplayPlaneCapabilitiesKHR; PFN_vkCreateDisplayPlaneSurfaceKHR CreateDisplayPlaneSurfaceKHR; + PFN_vkDestroySurfaceKHR + DestroySurfaceKHR; struct loader_icd *next; }; -- cgit v1.2.3