mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 14:40:10 +01:00
etnaviv: switch magic single buffer state to "3"
Some of the 16bit formats misrender with missing tiles with the current "2" state. As all the previously working formats also work with the "3" state, just always use that one. Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
This commit is contained in:
parent
8befc11186
commit
add23b59c9
1 changed files with 1 additions and 1 deletions
|
|
@ -323,7 +323,7 @@ etna_set_framebuffer_state(struct pipe_context *pctx,
|
|||
* one per color buffer / depth buffer. To keep the logic simple always use
|
||||
* single buffer when this feature is available.
|
||||
*/
|
||||
cs->PE_LOGIC_OP = VIVS_PE_LOGIC_OP_SINGLE_BUFFER(ctx->specs.single_buffer ? 2 : 0);
|
||||
cs->PE_LOGIC_OP = VIVS_PE_LOGIC_OP_SINGLE_BUFFER(ctx->specs.single_buffer ? 3 : 0);
|
||||
|
||||
ctx->framebuffer_s = *sv; /* keep copy of original structure */
|
||||
ctx->dirty |= ETNA_DIRTY_FRAMEBUFFER | ETNA_DIRTY_DERIVE_TS;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue