diff options
author | Samuel Pitoiset <[email protected]> | 2020-02-24 17:24:03 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-02 11:51:43 +0000 |
commit | d555794f3032594dbef3623052103900138d2356 (patch) | |
tree | 512c45254220f90fda79a23ba179a032d265f599 /src/amd/vulkan/radv_wsi.c | |
parent | 79d4d2807ff60d571c377c7f4aa729601ab873e1 (diff) |
radv: update entrypoints generation from ANV
It's a massive rework loosely based on ANV. This introduces separate
dispatch tables for the instance, physical device and device objects.
This will help for implementing internal driver layers for SQTT.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3930>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3930>
Diffstat (limited to 'src/amd/vulkan/radv_wsi.c')
-rw-r--r-- | src/amd/vulkan/radv_wsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_wsi.c b/src/amd/vulkan/radv_wsi.c index 2da2049feb4..66a8d002f85 100644 --- a/src/amd/vulkan/radv_wsi.c +++ b/src/amd/vulkan/radv_wsi.c @@ -32,7 +32,7 @@ static PFN_vkVoidFunction radv_wsi_proc_addr(VkPhysicalDevice physicalDevice, const char *pName) { - return radv_lookup_entrypoint_unchecked(pName); + return radv_lookup_entrypoint(pName); } VkResult |