X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fimports.h;h=df6a3fe994ab078403d1498a81ff8c4faf07f013;hb=a2b366b92cecc5045293528aa0bb8b1f0678bbcc;hp=da373b044306f94abcea6a6bd06fbf26ffa47975;hpb=bbb2d8403256dd16fb55b4059f396c42cdc5008c;p=mesa.git diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index da373b04430..df6a3fe994a 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -119,15 +119,6 @@ static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; } #endif -/** single-precision inverse square root */ -static inline float -INV_SQRTF(float x) -{ - /* XXX we could try Quake's fast inverse square root function here */ - return 1.0F / sqrtf(x); -} - - /*** *** LOG2: Log base 2 of float ***/