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>
(cherry picked from commit 47ef0d2470)
This commit is contained in:
Faith Ekstrand 2025-08-12 15:46:55 -04:00 committed by Eric Engestrom
parent 14470b21b2
commit 2b781693c7
2 changed files with 3 additions and 3 deletions

View file

@ -3494,7 +3494,7 @@
"description": "nvk: Allow kepler in nvk_is_conformant()",
"nominated": true,
"nomination_type": 2,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "f4b01bbfe7dc2d9f2cebebcc6410eff512ed3670",
"notes": null

View file

@ -91,8 +91,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 */