nvk: Allow kepler in nvk_is_conformant()
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

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:
Faith Ekstrand 2025-08-12 15:46:55 -04:00 committed by Marge Bot
parent 3f995bf817
commit 47ef0d2470

View file

@ -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 */