summaryrefslogtreecommitdiffstats
path: root/libs/hwui/PathCache.h
diff options
context:
space:
mode:
authorRomain Guy <romainguy@google.com>2010-10-18 15:14:16 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-10-18 15:14:16 -0700
commitdbde527e9b4f171fdd8cb537f48c7de4e4840986 (patch)
tree24a15923d322d9ea8d0a057fb66befd1540c73f9 /libs/hwui/PathCache.h
parentab1c57593fdb32ebd25f02707fe38ac8ca083fac (diff)
parent2665b85b2bd08faabf7c520a622a0e4d3465245f (diff)
downloadframeworks_base-dbde527e9b4f171fdd8cb537f48c7de4e4840986.zip
frameworks_base-dbde527e9b4f171fdd8cb537f48c7de4e4840986.tar.gz
frameworks_base-dbde527e9b4f171fdd8cb537f48c7de4e4840986.tar.bz2
Merge "Small cleanup."
Diffstat (limited to 'libs/hwui/PathCache.h')
-rw-r--r--libs/hwui/PathCache.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/hwui/PathCache.h b/libs/hwui/PathCache.h
index af6822d..9a5fc45 100644
--- a/libs/hwui/PathCache.h
+++ b/libs/hwui/PathCache.h
@@ -64,12 +64,12 @@ struct PathCacheEntry {
float strokeWidth;
bool operator<(const PathCacheEntry& rhs) const {
- INT_COMPARE(path) {
- INT_COMPARE(join) {
- INT_COMPARE(cap) {
- INT_COMPARE(style) {
- FLOAT_COMPARE(miter) {
- FLOAT_COMPARE(strokeWidth) return false;
+ LTE_INT(path) {
+ LTE_INT(join) {
+ LTE_INT(cap) {
+ LTE_INT(style) {
+ LTE_FLOAT(miter) {
+ LTE_FLOAT(strokeWidth) return false;
}
}
}