diff options
author | Marek Olšák <[email protected]> | 2020-04-16 13:32:27 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-24 10:38:54 +0000 |
commit | d8443b211e1ea5fad068f78a8b1f4e610be9b676 (patch) | |
tree | 2daf1868add3b98e268d729cf7eea6c6ec739509 /src/amd/common | |
parent | e43fc003e0ed9ad5ba6e19a1132457233edba6eb (diff) |
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>
Diffstat (limited to 'src/amd/common')
-rw-r--r-- | src/amd/common/ac_gpu_info.c | 1 |
1 files changed, 1 insertions, 0 deletions
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. */ |