aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/Sk64.h
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-15 13:43:23 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-15 13:43:23 +0000
commit0e6e8cc627242cc7e301401cfe112ba98a008101 (patch)
treef2bbce7d1b582f87d671d1b0f7adeef0e11ea5e8 /include/core/Sk64.h
parented41d86a956a84e1438e334c15641393d68cf606 (diff)
Revert r10705 (ARM Skia NEON patches - 04 - Clean SkFixed / SkLONGLONG) due to 1000+ linux_layout failures (http://build.chromium.org/p/tryserver.chromium/builders/linux_layout_rel/builds/18997/steps/webkit_tests/logs/stdio)
git-svn-id: http://skia.googlecode.com/svn/trunk@10729 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core/Sk64.h')
-rw-r--r--include/core/Sk64.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/core/Sk64.h b/include/core/Sk64.h
index 47ec15e0d3..6db3001fb5 100644
--- a/include/core/Sk64.h
+++ b/include/core/Sk64.h
@@ -221,6 +221,10 @@ 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