diff options
| author | Piers Daniell <pdaniell@nvidia.com> | 2016-09-14 11:24:36 -0600 |
|---|---|---|
| committer | Mark Young <marky@lunarg.com> | 2016-09-19 14:52:50 -0600 |
| commit | 4dec9eca7c80b931794e13ed507a8340269a77e7 (patch) | |
| tree | e51beb72588f51dfdd7b9f68ca35edc71e0d329b /loader/loader.c | |
| parent | ddca7b207067f44df0990a697b9471efdef8b066 (diff) | |
| download | usermoji-4dec9eca7c80b931794e13ed507a8340269a77e7.tar.xz | |
loader: Fixes for ICD vk{Create|Destroy}SurfaceKHR
Need to keep VkIcdSurface private to the loader.
The definition may conflict with some redefinitions of
VK_DEFINE_NON_DISPATCHABLE_HANDLE and it's not necessary to make public
anyway.
Change-Id: I30e166f0ecce2fd3ea36c745dc073b705973d75f
Diffstat (limited to 'loader/loader.c')
| -rw-r--r-- | loader/loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/loader.c b/loader/loader.c index 6abd4327..641be744 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -3244,7 +3244,7 @@ loader_gpa_instance_internal(VkInstance inst, const char *pName) { } -static VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL +VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL loader_gpa_device_internal(VkDevice device, const char *pName) { struct loader_device *dev; struct loader_icd *icd = loader_get_icd_and_device(device, &dev, NULL); |
