diff options
| author | Jon Ashburn <jon@lunarg.com> | 2015-11-06 14:31:07 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-11-06 15:04:27 -0700 |
| commit | 5ad746bada7144baeadf9dd2d60c3da249231eb0 (patch) | |
| tree | a6c4ba29efff7ca0b85722b569a66ff0e456ba96 /loader | |
| parent | ba3e2c708c63461c55d86ce7587c1989b7fbcade (diff) | |
| download | usermoji-5ad746bada7144baeadf9dd2d60c3da249231eb0.tar.xz | |
loader: Update calling conventions on instance extension functions
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/debug_report.c | 4 | ||||
| -rw-r--r-- | loader/wsi_swapchain.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/loader/debug_report.c b/loader/debug_report.c index 40a4b5b2..497860e6 100644 --- a/loader/debug_report.c +++ b/loader/debug_report.c @@ -65,7 +65,7 @@ void debug_report_create_instance( } } -static VkResult debug_report_DbgCreateMsgCallback( +static VkResult VKAPI debug_report_DbgCreateMsgCallback( VkInstance instance, VkFlags msgFlags, const PFN_vkDbgMsgCallback pfnMsgCallback, @@ -93,7 +93,7 @@ static VkResult debug_report_DbgCreateMsgCallback( return result; } -static VkResult debug_report_DbgDestroyMsgCallback( +static VkResult VKAPI debug_report_DbgDestroyMsgCallback( VkInstance instance, VkDbgMsgCallback msg_callback) { diff --git a/loader/wsi_swapchain.c b/loader/wsi_swapchain.c index 97193b2b..05b10bbb 100644 --- a/loader/wsi_swapchain.c +++ b/loader/wsi_swapchain.c @@ -62,7 +62,7 @@ void wsi_swapchain_create_instance( * This is the trampoline entrypoint * for GetPhysicalDeviceSurfaceSupportKHR */ -VkResult wsi_swapchain_GetPhysicalDeviceSurfaceSupportKHR( +VkResult VKAPI wsi_swapchain_GetPhysicalDeviceSurfaceSupportKHR( VkPhysicalDevice physicalDevice, uint32_t queueNodeIndex, const VkSurfaceDescriptionKHR* pSurfaceDescription, |
