gallium: fix ordering of arguments to pack_ui32_float4

This commit is contained in:
Keith Whitwell
2007-11-23 14:50:26 +00:00
committed by José Fonseca
parent 56bc8d9199
commit 708582f6d5

View File

@@ -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),