From 535408addad103421f8cc82705385de754871963 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Tue, 31 Aug 2004 11:36:14 +0000 Subject: 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. --- src/mesa/drivers/dri/i915/i915_texprog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/drivers/dri/i915/i915_texprog.c') diff --git a/src/mesa/drivers/dri/i915/i915_texprog.c b/src/mesa/drivers/dri/i915/i915_texprog.c index 32c7e4b9ee..ecf3a38a20 100644 --- a/src/mesa/drivers/dri/i915/i915_texprog.c +++ b/src/mesa/drivers/dri/i915/i915_texprog.c @@ -593,12 +593,12 @@ void i915ValidateTextureProgram( i915ContextPtr i915 ) } intel->coloroffset = offset / 4; - EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4UB_4F_RGBA, S4_VFMT_COLOR, 4 ); + EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4UB_4F_BGRA, S4_VFMT_COLOR, 4 ); if (index & (_TNL_BIT_COLOR1|_TNL_BIT_FOG)) { if (index & _TNL_BIT_COLOR1) { intel->specoffset = offset / 4; - EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_3UB_3F_RGB, S4_VFMT_SPEC_FOG, 3 ); + EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_3UB_3F_BGR, S4_VFMT_SPEC_FOG, 3 ); } else EMIT_PAD( 3 ); -- cgit v1.2.3