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

Commit e45113a1 authored by Raph Levien's avatar Raph Levien Committed by Android (Google) Code Review
Browse files

Merge "Attempt to resolve build breakage on x86"

parents 59f733ac 77b74d4f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -37,13 +37,13 @@ namespace android {
static inline float
HBFixedToFloat (hb_position_t v)
{
    return scalblnf (v, -8);
    return scalbnf (v, -8);
}

static inline hb_position_t
HBFloatToFixed (float v)
{
    return scalblnf (v, +8);
    return scalbnf (v, +8);
}

static inline hb_position_t SkScalarToHBFixed(SkScalar value) {