X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fimports.c;h=25080db40c43f3b1ad8af3018b9c1ba2c7c05104;hb=165694ad65374ff4330bd80acb398fe0428ba2e6;hp=1c4b219188cc97cde1bea1bbff3833e66534641b;hpb=fef303bc94f2fb15a068563ac8abfb1765bde035;p=mesa.git diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 1c4b219188c..25080db40c4 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -243,41 +243,6 @@ _mesa_memset16( unsigned short *dst, unsigned short val, size_t n ) /** \name Math */ /*@{*/ -/** Wrapper around sin() */ -double -_mesa_sin(double a) -{ - return sin(a); -} - -/** Single precision wrapper around sin() */ -float -_mesa_sinf(float a) -{ - return (float) sin((double) a); -} - -/** Wrapper around cos() */ -double -_mesa_cos(double a) -{ - return cos(a); -} - -/** Single precision wrapper around asin() */ -float -_mesa_asinf(float x) -{ - return (float) asin((double) x); -} - -/** Single precision wrapper around atan() */ -float -_mesa_atanf(float x) -{ - return (float) atan((double) x); -} - /** Wrapper around sqrt() */ double _mesa_sqrtd(double x)