Merge "Attempt to resolve build breakage on x86"

This commit is contained in:
Raph Levien
2013-01-15 14:58:17 -08:00
committed by Android (Google) Code Review

View File

@@ -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) {