mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
etnaviv: set correct ts_clear_value for BLT engine
BLT engine uses all ones to clear TS, set ts_clear_value to match that. Note: ts_clear_value is never used with BLT engine. Signed-off-by: Jonathan Marek <jonathan@marek.ca> Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
This commit is contained in:
parent
7c7eaaed4a
commit
53475c85fd
1 changed files with 4 additions and 2 deletions
|
|
@ -590,8 +590,10 @@ etna_get_specs(struct etna_screen *screen)
|
|||
screen->specs.bits_per_tile =
|
||||
VIV_FEATURE(screen, chipMinorFeatures0, 2BITPERTILE) ? 2 : 4;
|
||||
screen->specs.ts_clear_value =
|
||||
VIV_FEATURE(screen, chipMinorFeatures0, 2BITPERTILE) ? 0x55555555
|
||||
: 0x11111111;
|
||||
VIV_FEATURE(screen, chipMinorFeatures5, BLT_ENGINE) ? 0xffffffff :
|
||||
VIV_FEATURE(screen, chipMinorFeatures0, 2BITPERTILE) ? 0x55555555 :
|
||||
0x11111111;
|
||||
|
||||
|
||||
/* vertex and fragment samplers live in one address space */
|
||||
screen->specs.vertex_sampler_offset = 8;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue