Index: include/core/SkDraw.h |
diff --git a/include/core/SkDraw.h b/include/core/SkDraw.h |
index 8ccb1c0116c8c5c5232852bbe53f2c11d205c26b..f0759dc3c56451ac53d7150d408ea9c3f4732f48 100644 |
--- a/include/core/SkDraw.h |
+++ b/include/core/SkDraw.h |
@@ -107,11 +107,12 @@ public: |
static RectType ComputeRectType(const SkPaint&, const SkMatrix&, |
SkPoint* strokeSize); |
- void drawText_asPaths(const char text[], size_t byteLength, |
- SkScalar x, SkScalar y, const SkPaint&) const; |
- void drawPosText_asPaths(const char text[], size_t byteLength, |
- const SkScalar pos[], SkScalar constY, |
- int scalarsPerPosition, const SkPaint&) const; |
+ static bool ShouldDrawTextAsPaths(const SkPaint&, const SkMatrix&); |
+ void drawText_asPaths(const char text[], size_t byteLength, |
+ SkScalar x, SkScalar y, const SkPaint&) const; |
+ void drawPosText_asPaths(const char text[], size_t byteLength, |
+ const SkScalar pos[], SkScalar constY, |
+ int scalarsPerPosition, const SkPaint&) const; |
private: |
void drawDevMask(const SkMask& mask, const SkPaint&) const; |
@@ -131,8 +132,6 @@ private: |
bool SK_WARN_UNUSED_RESULT |
computeConservativeLocalClipBounds(SkRect* bounds) const; |
- static bool ShouldDrawTextAsPaths(const SkPaint&, const SkMatrix&); |
- |
public: |
const SkBitmap* fBitmap; // required |
const SkMatrix* fMatrix; // required |