From: José Fonseca Date: Tue, 15 Dec 2009 13:58:53 +0000 (+0000) Subject: llvmpipe: Fix typo in lp_build_log constant. X-Git-Tag: 062012170305~12852^2~2201 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=72c98780697b40da5c34da0aec21d06e46a431d1;p=profile%2Fivi%2Fmesa.git llvmpipe: Fix typo in lp_build_log constant. --- diff --git a/src/gallium/drivers/llvmpipe/lp_bld_arit.c b/src/gallium/drivers/llvmpipe/lp_bld_arit.c index 4fd459e..f0af324 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)); }