projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1dae2be
)
gallium: fix comment again. A half-closed interval was intended.
author
Brian
<brian.paul@tungstengraphics.com>
Tue, 11 Nov 2008 03:22:36 +0000
(20:22 -0700)
committer
Brian
<brian.paul@tungstengraphics.com>
Tue, 11 Nov 2008 03:22:36 +0000
(20:22 -0700)
Never saw the [a,b[ notation before.
src/gallium/auxiliary/util/u_math.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/util/u_math.c
b/src/gallium/auxiliary/util/u_math.c
index 9c5f616ceb37f94c2cc99091e211ba3f534e1916..d1571cd1fc4d22d69703b8e2e2aff9589983b8b4 100644
(file)
--- a/
src/gallium/auxiliary/util/u_math.c
+++ b/
src/gallium/auxiliary/util/u_math.c
@@
-30,7
+30,7
@@
#include "util/u_math.h"
-/** 2^x, for x in [-1.0, 1.0
]
*/
+/** 2^x, for x in [-1.0, 1.0
)
*/
float pow2_table[POW2_TABLE_SIZE];
@@
-43,7
+43,7
@@
init_pow2_table(void)
}
-/** log2(x), for x in [1.0, 2.0
]
*/
+/** log2(x), for x in [1.0, 2.0
)
*/
float log2_table[LOG2_TABLE_SIZE];