Index: src/core/SkPath.cpp |
diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp |
index daac0772dcde6b55c19e8be6faeddbfa0f1187d8..9381f48f3bf7952822725ab347fe8236d6dff7c8 100644 |
--- a/src/core/SkPath.cpp |
+++ b/src/core/SkPath.cpp |
@@ -12,7 +12,6 @@ |
#include "SkPathPriv.h" |
#include "SkPathRef.h" |
#include "SkRRect.h" |
-#include "SkThread.h" |
//////////////////////////////////////////////////////////////////////////// |
@@ -1881,7 +1880,7 @@ size_t SkPath::readFromMemory(const void* storage, size_t length) { |
} |
unsigned version = packed & 0xFF; |
- |
+ |
fConvexity = (packed >> kConvexity_SerializationShift) & 0xFF; |
fFillType = (packed >> kFillType_SerializationShift) & 0xFF; |
uint8_t dir = (packed >> kDirection_SerializationShift) & 0x3; |