From 84e1939ee1631fa02d3791929b62cd10468f1be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 11 Jul 2020 00:56:17 +0200 Subject: [PATCH] external: no need to export the flextVkInit*() functions anymore. --- src/MagnumExternal/Vulkan/flextVk.h | 4 ++-- src/MagnumExternal/Vulkan/flextVk.h.template | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/MagnumExternal/Vulkan/flextVk.h b/src/MagnumExternal/Vulkan/flextVk.h index ffffe47de..394c08dd6 100644 --- a/src/MagnumExternal/Vulkan/flextVk.h +++ b/src/MagnumExternal/Vulkan/flextVk.h @@ -4387,7 +4387,7 @@ struct FlextVkInstance { }; /* Per-instance function pointer initialization */ -void FLEXTVK_EXPORT flextVkInitInstance(VkInstance instance, FlextVkInstance* data); +void flextVkInitInstance(VkInstance instance, FlextVkInstance* data); /* Per-device function pointers */ struct FlextVkDevice { @@ -4653,7 +4653,7 @@ struct FlextVkDevice { }; /* Per-device function pointer initialization */ -void FLEXTVK_EXPORT flextVkInitDevice(VkDevice device, FlextVkDevice* data, PFN_vkVoidFunction(VKAPI_PTR *getDeviceProcAddr)(VkDevice, const char*)); +void flextVkInitDevice(VkDevice device, FlextVkDevice* data, PFN_vkVoidFunction(VKAPI_PTR *getDeviceProcAddr)(VkDevice, const char*)); #endif diff --git a/src/MagnumExternal/Vulkan/flextVk.h.template b/src/MagnumExternal/Vulkan/flextVk.h.template index b47586404..069dbb3e7 100644 --- a/src/MagnumExternal/Vulkan/flextVk.h.template +++ b/src/MagnumExternal/Vulkan/flextVk.h.template @@ -140,7 +140,7 @@ struct FlextVkInstance { }; /* Per-instance function pointer initialization */ -void FLEXTVK_EXPORT flextVkInitInstance(VkInstance instance, FlextVkInstance* data); +void flextVkInitInstance(VkInstance instance, FlextVkInstance* data); /* Per-device function pointers */ struct FlextVkDevice { @@ -160,7 +160,7 @@ struct FlextVkDevice { }; /* Per-device function pointer initialization */ -void FLEXTVK_EXPORT flextVkInitDevice(VkDevice device, FlextVkDevice* data, PFN_vkVoidFunction(VKAPI_PTR *getDeviceProcAddr)(VkDevice, const char*)); +void flextVkInitDevice(VkDevice device, FlextVkDevice* data, PFN_vkVoidFunction(VKAPI_PTR *getDeviceProcAddr)(VkDevice, const char*)); #endif