Index: include/core/SkMatrix.h |
diff --git a/include/core/SkMatrix.h b/include/core/SkMatrix.h |
index bfa03de7c5ddc1af83bf9f4e90723c37e1b78bb8..84d1a87e959638e8ad9ae909e0b672caf7bc9a63 100644 |
--- a/include/core/SkMatrix.h |
+++ b/include/core/SkMatrix.h |
@@ -10,7 +10,6 @@ |
#ifndef SkMatrix_DEFINED |
#define SkMatrix_DEFINED |
-#include "SkDynamicAnnotations.h" |
#include "SkRect.h" |
class SkString; |
@@ -644,7 +643,7 @@ |
}; |
SkScalar fMat[9]; |
- mutable SkTRacy<uint32_t> fTypeMask; |
+ mutable uint32_t fTypeMask; |
uint8_t computeTypeMask() const; |
uint8_t computePerspectiveTypeMask() const; |
@@ -665,7 +664,7 @@ |
void clearTypeMask(int mask) { |
// only allow a valid mask |
SkASSERT((mask & kAllMasks) == mask); |
- fTypeMask = fTypeMask & ~mask; |
+ fTypeMask &= ~mask; |
} |
TypeMask getPerspectiveTypeMaskOnly() const { |