diff options
author | Romain Guy <romainguy@google.com> | 2010-10-18 15:11:50 -0700 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2010-10-18 15:11:50 -0700 |
commit | 2665b85b2bd08faabf7c520a622a0e4d3465245f (patch) | |
tree | b64b59b93eb532763f6323e4e90b33d6186faab8 /libs/hwui/PathCache.h | |
parent | 03750a067e818ca7fbd0f590e2ff6a8fded21e6c (diff) | |
download | frameworks_base-2665b85b2bd08faabf7c520a622a0e4d3465245f.zip frameworks_base-2665b85b2bd08faabf7c520a622a0e4d3465245f.tar.gz frameworks_base-2665b85b2bd08faabf7c520a622a0e4d3465245f.tar.bz2 |
Small cleanup.
Change-Id: I0e5b9154a2d93af793d62f462d68cb7c6c3f6d75
Diffstat (limited to 'libs/hwui/PathCache.h')
-rw-r--r-- | libs/hwui/PathCache.h | 12 |
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; } } } |