summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-12-15 13:58:53 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-12-15 13:58:53 +0000
commit72c98780697b40da5c34da0aec21d06e46a431d1 (patch)
tree6e5b9f58b0949af6468aede371c920bbaab017da /src/gallium/drivers/llvmpipe
parent079b1cf4cf32a2bdc5f13c2aa1e211c4c7dc6775 (diff)
llvmpipe: Fix typo in lp_build_log constant.
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_bld_arit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_arit.c b/src/gallium/drivers/llvmpipe/lp_bld_arit.c
index 4fd459e593e..f0af3244045 100644
--- a/src/gallium/drivers/llvmpipe/lp_bld_arit.c
+++ b/src/gallium/drivers/llvmpipe/lp_bld_arit.c
@@ -1083,7 +1083,7 @@ lp_build_log(struct lp_build_context *bld,
LLVMValueRef x)
{
/* log(2) */
- LLVMValueRef log2 = lp_build_const_scalar(bld->type, 1.4426950408889634);
+ LLVMValueRef log2 = lp_build_const_scalar(bld->type, 0.69314718055994529);
return lp_build_mul(bld, log2, lp_build_exp2(bld, x));
}