mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-22 06:20:22 +01:00
nvk: CBuf alignment reduces to 64B on Turing
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26617>
This commit is contained in:
parent
289149ebcb
commit
df62471fef
1 changed files with 1 additions and 1 deletions
|
|
@ -488,7 +488,7 @@ nvk_get_device_features(const struct nv_device_info *info,
|
|||
uint32_t
|
||||
nvk_min_cbuf_alignment(const struct nv_device_info *info)
|
||||
{
|
||||
return 256;
|
||||
return info->cls_eng3d >= TURING_A ? 64 : 256;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue