turnip: fix srgb MRT
Register packing macros makes this only set the first bit. Set to whole
dword to fix srgb for color attachments >0.
Fixes: 59f29fc8 ("turnip: Convert the rest of tu_cmd_buffer.c over to the new pack macros.")
Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Reviewed-by: Eric Anholt <eric@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3979>
This commit is contained in:
committed by
Marge Bot
parent
8f9e1c6047
commit
6420406f19
@@ -522,10 +522,10 @@ tu6_emit_mrt(struct tu_cmd_buffer *cmd,
|
||||
}
|
||||
|
||||
tu_cs_emit_regs(cs,
|
||||
A6XX_RB_SRGB_CNTL(srgb_cntl));
|
||||
A6XX_RB_SRGB_CNTL(.dword = srgb_cntl));
|
||||
|
||||
tu_cs_emit_regs(cs,
|
||||
A6XX_SP_SRGB_CNTL(srgb_cntl));
|
||||
A6XX_SP_SRGB_CNTL(.dword = srgb_cntl));
|
||||
|
||||
tu_cs_emit_regs(cs,
|
||||
A6XX_RB_RENDER_COMPONENTS(
|
||||
|
||||
Reference in New Issue
Block a user