vk/vulkan.h: Switch to the split ProcAddr functions in 130
This commit is contained in:
@@ -274,8 +274,15 @@ VkResult anv_GetPhysicalDeviceInfo(
|
||||
|
||||
}
|
||||
|
||||
void * vkGetProcAddr(
|
||||
VkPhysicalDevice physicalDevice,
|
||||
PFN_vkVoidFunction anv_GetInstanceProcAddr(
|
||||
VkInstance instance,
|
||||
const char* pName)
|
||||
{
|
||||
return anv_lookup_entrypoint(pName);
|
||||
}
|
||||
|
||||
PFN_vkVoidFunction anv_GetDeviceProcAddr(
|
||||
VkDevice device,
|
||||
const char* pName)
|
||||
{
|
||||
return anv_lookup_entrypoint(pName);
|
||||
|
Reference in New Issue
Block a user