Browse Source

external: no need to export the flextVkInit*() functions anymore.

pull/234/head
Vladimír Vondruš 6 years ago
parent
commit
84e1939ee1
  1. 4
      src/MagnumExternal/Vulkan/flextVk.h
  2. 4
      src/MagnumExternal/Vulkan/flextVk.h.template

4
src/MagnumExternal/Vulkan/flextVk.h vendored

@ -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

4
src/MagnumExternal/Vulkan/flextVk.h.template vendored

@ -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

Loading…
Cancel
Save