Module: Mesa Branch: master Commit: 500842399a350481d99c691c1053a6adab095bc8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=500842399a350481d99c691c1053a6adab095bc8
Author: Rhys Perry <[email protected]> Date: Thu Mar 19 20:13:52 2020 +0000 radv/winsys: set has_syncobj_wait_for_submit in the null winsys Needed for Vulkan 1.1+ Signed-off-by: Rhys Perry <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> Reviewed-by: Samuel Pitoiset <[email protected]> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4249> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4249> --- src/amd/vulkan/winsys/null/radv_null_winsys.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/amd/vulkan/winsys/null/radv_null_winsys.c b/src/amd/vulkan/winsys/null/radv_null_winsys.c index 7ffd8c44db7..8724e27fe57 100644 --- a/src/amd/vulkan/winsys/null/radv_null_winsys.c +++ b/src/amd/vulkan/winsys/null/radv_null_winsys.c @@ -109,6 +109,7 @@ static void radv_null_winsys_query_info(struct radeon_winsys *rws, } info->pci_id = radv_null_winsys_get_pci_id(info->family); + info->has_syncobj_wait_for_submit = true; info->max_se = 4; info->max_wave64_per_simd = info->family >= CHIP_POLARIS10 && info->family <= CHIP_VEGAM ? 8 : 10; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
