mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
gallium: Fix log<->cos typo in logf.
This commit is contained in:
parent
012c0dd632
commit
969a207fe3
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue