Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: include/core/Sk64.h

Issue 18539004: ARM Skia NEON patches - 04 - Clean SkFixed / SkLONGLONG (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Remove SkLONGLONG + use int64_t where there was an existing long long SkFixed implementation Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/config/SkUserConfig.h ('k') | include/core/SkFixed.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/Sk64.h
diff --git a/include/core/Sk64.h b/include/core/Sk64.h
index 6db3001fb55b8086f9807db0b6010a7d056a9921..47ec15e0d39a22b98cfe584ff52f62b65d27cee1 100644
--- a/include/core/Sk64.h
+++ b/include/core/Sk64.h
@@ -221,10 +221,6 @@ struct SK_API Sk64 {
friend bool operator>=(const Sk64& a, const Sk64& b) {
return a.fHi > b.fHi || (a.fHi == b.fHi && a.fLo >= b.fLo);
}
-
-#ifdef SkLONGLONG
- SkLONGLONG getLongLong() const;
-#endif
};
#endif
« no previous file with comments | « include/config/SkUserConfig.h ('k') | include/core/SkFixed.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698