OSDN Git Service
(root)
/
android-x86
/
external-mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
56bc8d9
)
gallium: fix ordering of arguments to pack_ui32_float4
author
Keith Whitwell
<keith@tungstengraphics.com>
Fri, 23 Nov 2007 14:50:26 +0000
(14:50 +0000)
committer
José Fonseca
<jrfonseca@tungstengraphics.com>
Sun, 9 Dec 2007 14:05:12 +0000
(14:05 +0000)
src/mesa/pipe/p_util.h
patch
|
blob
|
history
diff --git
a/src/mesa/pipe/p_util.h
b/src/mesa/pipe/p_util.h
index
16e5769
..
3c5e984
100644
(file)
--- 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),