From: Keith Whitwell Date: Fri, 23 Nov 2007 14:50:26 +0000 (+0000) Subject: gallium: fix ordering of arguments to pack_ui32_float4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=708582f6d5bec57716a894a18491078c40448dea;p=mesa.git gallium: fix ordering of arguments to pack_ui32_float4 --- diff --git a/src/mesa/pipe/p_util.h b/src/mesa/pipe/p_util.h index 16e57699aa1..3c5e98453c9 100644 --- a/src/mesa/pipe/p_util.h +++ b/src/mesa/pipe/p_util.h @@ -205,8 +205,8 @@ static INLINE unsigned char float_to_ubyte( float f ) static INLINE unsigned pack_ui32_float4( float a, float b, - float d, - float c ) + float c, + float d ) { return pack_ub4( float_to_ubyte(a), float_to_ubyte(b),