diff options
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 0c74261..af6822d 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 { - compareI(path) { - compareI(join) { - compareI(cap) { - compareI(style) { - compare(miter) { - compare(strokeWidth) return false; + INT_COMPARE(path) { + INT_COMPARE(join) { + INT_COMPARE(cap) { + INT_COMPARE(style) { + FLOAT_COMPARE(miter) { + FLOAT_COMPARE(strokeWidth) return false; } } } |