diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2007-11-23 14:50:26 +0000 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2007-12-09 14:05:12 +0000 |
commit | 708582f6d5bec57716a894a18491078c40448dea (patch) | |
tree | b5c7dfe033776d717e61efa081fffe7b6c7525ec /src/mesa | |
parent | 56bc8d9199e43ed694335f69910c1a4a4f85e4e1 (diff) |
gallium: fix ordering of arguments to pack_ui32_float4
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/pipe/p_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/p_util.h b/src/mesa/pipe/p_util.h index 16e57699aa..3c5e98453c 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), |