mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 18:28:12 +02:00
nvk: Allow kepler in nvk_is_conformant()
Thanks to "Enable X platform" patches living way too long (Vulkan
conformance has a 30 day delay), there was a little rebase fail and we
turned on Kepler and then accidentally turned it back off.
Fixes: f4b01bbfe7 ("nvk: Add an nvk_is_conformant() helper")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36745>
This commit is contained in:
parent
3f995bf817
commit
47ef0d2470
1 changed files with 2 additions and 2 deletions
|
|
@ -86,8 +86,8 @@ nvk_is_conformant(const struct nv_device_info *info)
|
|||
if (info->type != NV_DEVICE_TYPE_DIS)
|
||||
return false;
|
||||
|
||||
/* Everything Maxwell through Ada is conformant */
|
||||
if (info->cls_eng3d >= MAXWELL_A && info->cls_eng3d <= ADA_A)
|
||||
/* Everything Kepler through Ada is conformant */
|
||||
if (info->cls_eng3d >= KEPLER_A && info->cls_eng3d <= ADA_A)
|
||||
return true;
|
||||
|
||||
/* And also Blackwell B */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue