mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
r300-gallium: RGBA, not ARGB, after all.
Clearly, something else is wrong.
This commit is contained in:
parent
aafbbf7744
commit
3eeeaf04e3
1 changed files with 1 additions and 1 deletions
|
|
@ -165,10 +165,10 @@ static void r300_surface_fill(struct pipe_context* pipe,
|
|||
OUT_CS_32F(1.0);
|
||||
OUT_CS_32F(1.0);
|
||||
/* Color */
|
||||
OUT_CS_32F(a);
|
||||
OUT_CS_32F(r);
|
||||
OUT_CS_32F(g);
|
||||
OUT_CS_32F(b);
|
||||
OUT_CS_32F(a);
|
||||
|
||||
/* XXX figure out why this is 0xA and not 0x2 */
|
||||
OUT_CS_REG(R300_RB3D_DSTCACHE_CTLSTAT, 0xA);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue