mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 05:10:11 +01:00
radv: mark AMD CDNA as unsupported
No access to the hw and likely broken. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33113>
This commit is contained in:
parent
01df20446e
commit
9999791582
1 changed files with 4 additions and 0 deletions
|
|
@ -24,6 +24,10 @@
|
||||||
static bool
|
static bool
|
||||||
radv_is_gpu_supported(const struct radeon_info *info)
|
radv_is_gpu_supported(const struct radeon_info *info)
|
||||||
{
|
{
|
||||||
|
/* AMD CDNA isn't supported. */
|
||||||
|
if (info->gfx_level == GFX9 && !info->has_graphics)
|
||||||
|
return false;
|
||||||
|
|
||||||
/* GFX12 isn't supported. */
|
/* GFX12 isn't supported. */
|
||||||
if (info->gfx_level >= GFX12)
|
if (info->gfx_level >= GFX12)
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue