From: José Fonseca Date: Mon, 2 Jun 2008 11:16:49 +0000 (+0900) Subject: gallium: Fix log<->cos typo in logf. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=969a207fe356d152b65085a9113502c7fbb5712e;p=mesa.git gallium: Fix log<->cos typo in logf. --- diff --git a/src/gallium/include/pipe/p_util.h b/src/gallium/include/pipe/p_util.h index 0d8ed167b2a..3d8ad48d4fa 100644 --- a/src/gallium/include/pipe/p_util.h +++ b/src/gallium/include/pipe/p_util.h @@ -452,7 +452,7 @@ static INLINE float fabsf( float f ) static INLINE float logf( float f ) { - return (float) cos( (double) f ); + return (float) log( (double) f ); } #endif /* _INC_MATH */ #endif