Module: Mesa Branch: master Commit: 4bfe784dcadf5bcb65dbd8b9c3d4db757d1824b8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=4bfe784dcadf5bcb65dbd8b9c3d4db757d1824b8
Author: Corbin Simpson <[email protected]> Date: Mon Mar 30 16:15:04 2009 -0700 r300-gallium: Emit the "right" sequence of colors. ARGB, not RGBA. --- src/gallium/drivers/r300/r300_surface.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/r300/r300_surface.c b/src/gallium/drivers/r300/r300_surface.c index b2e0cef..6ecc708 100644 --- a/src/gallium/drivers/r300/r300_surface.c +++ b/src/gallium/drivers/r300/r300_surface.c @@ -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(1.0); /* XXX figure out why this is 0xA and not 0x2 */ OUT_CS_REG(R300_RB3D_DSTCACHE_CTLSTAT, 0xA); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
