mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 09:28:07 +02:00
nvk: Enable NAK by default for Volta
Signed-off-by: Karol Herbst <kherbst@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26214>
This commit is contained in:
parent
69454a8abd
commit
3e308903eb
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ nvk_nak_stages(const struct nv_device_info *info)
|
|||
|
||||
const char *env_str = getenv("NVK_USE_NAK");
|
||||
if (env_str == NULL)
|
||||
return info->cls_eng3d >= TURING_A ? all : 0;
|
||||
return info->cls_eng3d >= VOLTA_A ? all : 0;
|
||||
else
|
||||
return parse_debug_string(env_str, flags);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue