mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 17:50:11 +01:00
anv/cnl: Don't write to Cache Mode Register 1 on gen10+
For PartialResolveDisableInVC field recommendation is to always set this to 0 and that's the default value of the bit. So, we have nothing left to write to CACHE_MODE_1. Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
b980553309
commit
7896dee349
1 changed files with 1 additions and 3 deletions
|
|
@ -52,13 +52,11 @@ genX(init_device_state)(struct anv_device *device)
|
|||
ps.PipelineSelection = _3D;
|
||||
}
|
||||
|
||||
#if GEN_GEN >= 9
|
||||
#if GEN_GEN == 9
|
||||
uint32_t cache_mode_1;
|
||||
anv_pack_struct(&cache_mode_1, GENX(CACHE_MODE_1),
|
||||
#if GEN_GEN == 9
|
||||
.FloatBlendOptimizationEnable = true,
|
||||
.FloatBlendOptimizationEnableMask = true,
|
||||
#endif
|
||||
.PartialResolveDisableInVC = true,
|
||||
.PartialResolveDisableInVCMask = true);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue