gallium: fix ordering of arguments to pack_ui32_float4
authorKeith Whitwell <keith@tungstengraphics.com>
Fri, 23 Nov 2007 14:50:26 +0000 (14:50 +0000)
committerJosé Fonseca <jrfonseca@tungstengraphics.com>
Sun, 9 Dec 2007 14:05:12 +0000 (14:05 +0000)
src/mesa/pipe/p_util.h

index 16e5769..3c5e984 100644 (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),