mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-07 05:30:25 +01:00
freedreno/devices: Turn off enable_tp_ubwc_flag_hint for a740 by default
Most devices with a740 have blob v6xx which doesn't have TP_UBWC_FLAG_HINT set. Match them for better compatibility by default. Signed-off-by: Danylo Piliaiev <dpiliaiev@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29754>
This commit is contained in:
parent
2d2f19aa44
commit
d853443a2e
1 changed files with 4 additions and 2 deletions
|
|
@ -822,7 +822,9 @@ a7xx_740 = A7XXProps(
|
|||
ubwc_unorm_snorm_int_compatible = True,
|
||||
supports_ibo_ubwc = True,
|
||||
fs_must_have_non_zero_constlen_quirk = True,
|
||||
enable_tp_ubwc_flag_hint = True,
|
||||
# Most devices with a740 have blob v6xx which doesn't have
|
||||
# this hint set. Match them for better compatibility by default.
|
||||
enable_tp_ubwc_flag_hint = False,
|
||||
)
|
||||
|
||||
a7xx_740_a32 = A7XXProps(
|
||||
|
|
@ -832,7 +834,7 @@ a7xx_740_a32 = A7XXProps(
|
|||
ubwc_unorm_snorm_int_compatible = True,
|
||||
supports_ibo_ubwc = True,
|
||||
fs_must_have_non_zero_constlen_quirk = True,
|
||||
enable_tp_ubwc_flag_hint = True,
|
||||
enable_tp_ubwc_flag_hint = False,
|
||||
)
|
||||
|
||||
a7xx_750 = A7XXProps(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue