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

Commit 722a5d71 authored by Shih-wei Liao's avatar Shih-wei Liao
Browse files

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

Change-Id: I635eecead3ef71690124e51f29afa163373e2329
parent e4031a37
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)