projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aea6b41
)
util: fix typo in MAX4
author
Keith Whitwell
<keithw@vmware.com>
Fri, 27 Aug 2010 12:29:00 +0000
(13:29 +0100)
committer
Keith Whitwell
<keithw@vmware.com>
Fri, 27 Aug 2010 12:34:12 +0000
(13:34 +0100)
Thanks to Michal for spotting it.
src/gallium/auxiliary/util/u_math.h
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/util/u_math.h
b/src/gallium/auxiliary/util/u_math.h
index 6ba4e24f4ceddf4ec080c859d95128210e8699d0..af510dac510be71bcba562007ca100e345dd2819 100644
(file)
--- a/
src/gallium/auxiliary/util/u_math.h
+++ b/
src/gallium/auxiliary/util/u_math.h
@@
-567,7
+567,7
@@
util_bswap16(uint16_t n)
#define MAX3( A, B, C ) MAX2( MAX2( A, B ), C )
#define MIN4( A, B, C, D ) MIN2( MIN2( A, B ), MIN2(C, D) )
-#define MAX4( A, B, C, D ) MAX2( MAX2( A, B ), M
IN
2(C, D) )
+#define MAX4( A, B, C, D ) MAX2( MAX2( A, B ), M
AX
2(C, D) )
/**