mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 15:38:09 +02: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
|
uint32_t
|
||||||
nvk_min_cbuf_alignment(const struct nv_device_info *info)
|
nvk_min_cbuf_alignment(const struct nv_device_info *info)
|
||||||
{
|
{
|
||||||
return 256;
|
return info->cls_eng3d >= TURING_A ? 64 : 256;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue