winevulkan: Remove native_vkGetInstanceProcAddrWINE.
It was needed for use cases like DXVK winelib builds. It was never really adopted and it's problematic for PE builds. Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e3460ceb62
commit
1cc6b4921a
|
@ -2684,7 +2684,6 @@ class VkGenerator(object):
|
|||
f.write("@ stdcall -private vk_icdGetInstanceProcAddr(ptr str) wine_vk_icdGetInstanceProcAddr\n")
|
||||
f.write("@ stdcall -private vk_icdGetPhysicalDeviceProcAddr(ptr str) wine_vk_icdGetPhysicalDeviceProcAddr\n")
|
||||
f.write("@ stdcall -private vk_icdNegotiateLoaderICDInterfaceVersion(ptr) wine_vk_icdNegotiateLoaderICDInterfaceVersion\n")
|
||||
f.write("@ cdecl -norelay native_vkGetInstanceProcAddrWINE(ptr str)\n")
|
||||
|
||||
# Export symbols for all Vulkan Core functions.
|
||||
for func in self.registry.funcs.values():
|
||||
|
|
|
@ -1972,17 +1972,3 @@ VkResult WINAPI wine_vkDebugMarkerSetObjectNameEXT(VkDevice device, const VkDebu
|
|||
|
||||
return thunk_vkDebugMarkerSetObjectNameEXT(device, &wine_name_info);
|
||||
}
|
||||
|
||||
/*
|
||||
* Wrapper around driver vkGetInstanceProcAddr implementation.
|
||||
* Allows winelib applications to access Vulkan functions with Wine
|
||||
* additions and native ABI.
|
||||
*/
|
||||
void *native_vkGetInstanceProcAddrWINE(VkInstance instance, const char *name)
|
||||
{
|
||||
wine_vk_init_once();
|
||||
if (!vk_funcs)
|
||||
return NULL;
|
||||
|
||||
return vk_funcs->p_vkGetInstanceProcAddr(instance, name);
|
||||
}
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
@ stdcall -private vk_icdGetInstanceProcAddr(ptr str) wine_vk_icdGetInstanceProcAddr
|
||||
@ stdcall -private vk_icdGetPhysicalDeviceProcAddr(ptr str) wine_vk_icdGetPhysicalDeviceProcAddr
|
||||
@ stdcall -private vk_icdNegotiateLoaderICDInterfaceVersion(ptr) wine_vk_icdNegotiateLoaderICDInterfaceVersion
|
||||
@ cdecl -norelay native_vkGetInstanceProcAddrWINE(ptr str)
|
||||
@ stdcall -private wine_vkAcquireNextImage2KHR(ptr ptr ptr)
|
||||
@ stdcall -private wine_vkAcquireNextImageKHR(ptr int64 int64 int64 int64 ptr)
|
||||
@ stdcall -private wine_vkAllocateCommandBuffers(ptr ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue