Module: Mesa Branch: master Commit: d8443b211e1ea5fad068f78a8b1f4e610be9b676 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=d8443b211e1ea5fad068f78a8b1f4e610be9b676
Author: Marek Olšák <[email protected]> Date: Thu Apr 16 13:32:27 2020 -0400 ac: out-of-order rasterization is not supported on gfx10 Reviewed-by: Samuel Pitoiset <[email protected]> Reviewed-by: Pierre-Eric Pelloux-Prayer <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4698> --- src/amd/common/ac_gpu_info.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c index 92148597b51..fb391115d36 100644 --- a/src/amd/common/ac_gpu_info.c +++ b/src/amd/common/ac_gpu_info.c @@ -588,6 +588,7 @@ bool ac_query_gpu_info(int fd, void *dev_p, info->family == CHIP_RENOIR); info->has_out_of_order_rast = info->chip_class >= GFX8 && + info->chip_class <= GFX9 && info->max_se >= 2; /* Whether chips support double rate packed math instructions. */ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
