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=acdf24e53047892b83dc5b92567694600ffb8cf5;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 cb3cd264e91..0a9e2ef1b6b 100644 --- a/src/gallium/include/pipe/p_util.h +++ b/src/gallium/include/pipe/p_util.h @@ -449,7 +449,7 @@ static INLINE float fabsf( float f ) static INLINE float logf( float f ) { - return (float) cos( (double) f ); + return (float) log( (double) f ); } #endif