mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +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> (cherry picked from commit47ef0d2470)
This commit is contained in:
parent
14470b21b2
commit
2b781693c7
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue