| Index: include/core/SkFixed.h
|
| diff --git a/include/core/SkFixed.h b/include/core/SkFixed.h
|
| index acfbe9af9565b3cfcc967911fa92a1d256e0bfe5..5e26ec50ecdea99a2ef5168c838ee6d3aae10f78 100644
|
| --- a/include/core/SkFixed.h
|
| +++ b/include/core/SkFixed.h
|
| @@ -172,24 +172,6 @@ inline bool SkFixedNearlyZero(SkFixed x, SkFixed tolerance = SK_FixedNearlyZero)
|
| //////////////////////////////////////////////////////////////////////////////////////////////////////
|
| // Now look for ASM overrides for our portable versions (should consider putting this in its own file)
|
|
|
| -#ifdef SkLONGLONG
|
| - inline SkFixed SkFixedMul_longlong(SkFixed a, SkFixed b)
|
| - {
|
| - return (SkFixed)((SkLONGLONG)a * b >> 16);
|
| - }
|
| - inline SkFract SkFractMul_longlong(SkFract a, SkFract b)
|
| - {
|
| - return (SkFract)((SkLONGLONG)a * b >> 30);
|
| - }
|
| - inline SkFixed SkFixedSquare_longlong(SkFixed value)
|
| - {
|
| - return (SkFixed)((SkLONGLONG)value * value >> 16);
|
| - }
|
| - #define SkFixedMul(a,b) SkFixedMul_longlong(a,b)
|
| - #define SkFractMul(a,b) SkFractMul_longlong(a,b)
|
| - #define SkFixedSquare(a) SkFixedSquare_longlong(a)
|
| -#endif
|
| -
|
| #if defined(SK_CPU_ARM)
|
| /* This guy does not handle NaN or other obscurities, but is faster than
|
| than (int)(x*65536)
|
|
|