diff options
author | Keith Whitwell <[email protected]> | 2004-04-22 08:14:48 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-04-22 08:14:48 +0000 |
commit | 7bd5343990ccccdc5d2d06b8b11dd20fa8e04255 (patch) | |
tree | 72e499e51437bf5f102e51d87ab6ab5ca0efb91c /src/mesa/drivers/dri/i830 | |
parent | 66fdc3c948096a53dd304f1906135a041075c0b7 (diff) |
Fix order of EMIT_4UB_4F declarations
Diffstat (limited to 'src/mesa/drivers/dri/i830')
-rw-r--r-- | src/mesa/drivers/dri/i830/i830_tris.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i830/i830_tris.c b/src/mesa/drivers/dri/i830/i830_tris.c index 9c68524601b..addbfff965b 100644 --- a/src/mesa/drivers/dri/i830/i830_tris.c +++ b/src/mesa/drivers/dri/i830/i830_tris.c @@ -747,11 +747,11 @@ static void i830RenderStart( GLcontext *ctx ) EMIT_ATTR( _TNL_ATTRIB_POS, EMIT_3F_VIEWPORT, VRTX_HAS_XYZ ); } - EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4UB_4F_RGBA, VRTX_HAS_DIFFUSE ); + EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4UB_4F_BGRA, VRTX_HAS_DIFFUSE ); if (index & (_TNL_BIT_COLOR1|_TNL_BIT_FOG)) { if (index & _TNL_BIT_COLOR1) - EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_3UB_3F_RGB, VRTX_HAS_SPEC ); + EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_3UB_3F_BGR, VRTX_HAS_SPEC ); else EMIT_PAD( 3 ); |