mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
vc4: Fix swapped 565 dithering versus no-dithering render configs.
Fixes many 565 piglit tests (like fbo-generatemipmap-formats) that weren't expecting dithering.
This commit is contained in:
parent
8cd165051b
commit
6abbdfe3db
1 changed files with 2 additions and 2 deletions
|
|
@ -214,9 +214,9 @@ enum vc4_packet {
|
|||
#define VC4_RENDER_CONFIG_DECIMATE_MODE_4X (1 << 4)
|
||||
#define VC4_RENDER_CONFIG_DECIMATE_MODE_16X (2 << 4)
|
||||
|
||||
#define VC4_RENDER_CONFIG_FORMAT_BGR565 (0 << 2)
|
||||
#define VC4_RENDER_CONFIG_FORMAT_BGR565_DITHERED (0 << 2)
|
||||
#define VC4_RENDER_CONFIG_FORMAT_RGBA8888 (1 << 2)
|
||||
#define VC4_RENDER_CONFIG_FORMAT_BGR565_DITHERED (2 << 2)
|
||||
#define VC4_RENDER_CONFIG_FORMAT_BGR565 (2 << 2)
|
||||
#define VC4_RENDER_CONFIG_FORMAT_MASK (3 << 2)
|
||||
|
||||
#define VC4_RENDER_CONFIG_TILE_BUFFER_64BIT (1 << 1)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue