diff options
author | Keith Whitwell <[email protected]> | 2004-08-31 11:36:14 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-08-31 11:36:14 +0000 |
commit | 535408addad103421f8cc82705385de754871963 (patch) | |
tree | 20a5ba3653d74e2e93aee83c9e011997d93ea165 /src/mesa/drivers/dri/i915/i830_vtbl.c | |
parent | c372549036c8784e8e86d040f13685faa76f6d4d (diff) |
The i915 driver was merged after EMIT_*_BGR bug was fixed. This brings
the driver into line with the correct meaning of those symbols
and fixes color corruptions.
Diffstat (limited to 'src/mesa/drivers/dri/i915/i830_vtbl.c')
-rw-r--r-- | src/mesa/drivers/dri/i915/i830_vtbl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i915/i830_vtbl.c b/src/mesa/drivers/dri/i915/i830_vtbl.c index 1a659fd53ea..e1ddce2bb73 100644 --- a/src/mesa/drivers/dri/i915/i830_vtbl.c +++ b/src/mesa/drivers/dri/i915/i830_vtbl.c @@ -87,13 +87,13 @@ static void i830_render_start( intelContextPtr intel ) intel->coloroffset = 3; } - EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4UB_4F_RGBA, VFT0_DIFFUSE ); + EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4UB_4F_BGRA, VFT0_DIFFUSE ); intel->specoffset = 0; if (index & (_TNL_BIT_COLOR1|_TNL_BIT_FOG)) { if (index & _TNL_BIT_COLOR1) { intel->specoffset = intel->coloroffset + 1; - EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_3UB_3F_RGB, VFT0_SPEC ); + EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_3UB_3F_BGR, VFT0_SPEC ); } else EMIT_PAD( 3 ); |