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:
committed by
Marge Bot
parent
3f995bf817
commit
47ef0d2470
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user