Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4e094c14 authored by Shih-wei Liao's avatar Shih-wei Liao Committed by Android (Google) Code Review
Browse files

Merge "Comment out rsqrt for now. Long-term: Need to figur out why rsqrt caused slang to abort."

parents 7028db3b 722a5d71
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -373,10 +373,10 @@ extern float __attribute__((overloadable)) round(float);
DEF_FUNC_1(round)

extern float __attribute__((overloadable)) sqrt(float);
static float __attribute__((overloadable)) rsqrt(float v) {
/*static float __attribute__((overloadable)) rsqrt(float v) {
    return 1.f / sqrt(v);
}
DEF_FUNC_1(rsqrt)
DEF_FUNC_1(rsqrt)*/

extern float __attribute__((overloadable)) sin(float);
DEF_FUNC_1(sin)