| Index: src/core/SkPictureRecord.cpp
|
| diff --git a/src/core/SkPictureRecord.cpp b/src/core/SkPictureRecord.cpp
|
| index bea344208477d476f73cb469ee9f594b1c97dd30..0146c1b52a1f57b057ef32892fd25789c85bc46f 100644
|
| --- a/src/core/SkPictureRecord.cpp
|
| +++ b/src/core/SkPictureRecord.cpp
|
| @@ -1212,8 +1212,8 @@ void SkPictureRecord::addFontMetricsTopBottom(const SkPaint& paint, const SkFlat
|
| this->addScalar(flat.topBot()[1] + maxY);
|
| }
|
|
|
| -void SkPictureRecord::drawText(const void* text, size_t byteLength, SkScalar x,
|
| - SkScalar y, const SkPaint& paint) {
|
| +void SkPictureRecord::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
|
| + const SkPaint& paint) {
|
|
|
| #ifdef SK_COLLAPSE_MATRIX_CLIP_STATE
|
| fMCMgr.call(SkMatrixClipStateMgr::kOther_CallType);
|
| @@ -1241,8 +1241,8 @@ void SkPictureRecord::drawText(const void* text, size_t byteLength, SkScalar x,
|
| this->validate(initialOffset, size);
|
| }
|
|
|
| -void SkPictureRecord::drawPosText(const void* text, size_t byteLength,
|
| - const SkPoint pos[], const SkPaint& paint) {
|
| +void SkPictureRecord::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
|
| + const SkPaint& paint) {
|
|
|
| #ifdef SK_COLLAPSE_MATRIX_CLIP_STATE
|
| fMCMgr.call(SkMatrixClipStateMgr::kOther_CallType);
|
| @@ -1330,10 +1330,8 @@ void SkPictureRecord::drawPosText(const void* text, size_t byteLength,
|
| this->validate(initialOffset, size);
|
| }
|
|
|
| -void SkPictureRecord::drawPosTextH(const void* text, size_t byteLength,
|
| - const SkScalar xpos[], SkScalar constY,
|
| - const SkPaint& paint) {
|
| -
|
| +void SkPictureRecord::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
|
| + SkScalar constY, const SkPaint& paint) {
|
| #ifdef SK_COLLAPSE_MATRIX_CLIP_STATE
|
| fMCMgr.call(SkMatrixClipStateMgr::kOther_CallType);
|
| #endif
|
| @@ -1381,10 +1379,8 @@ void SkPictureRecord::drawPosTextHImpl(const void* text, size_t byteLength,
|
| this->validate(initialOffset, size);
|
| }
|
|
|
| -void SkPictureRecord::drawTextOnPath(const void* text, size_t byteLength,
|
| - const SkPath& path, const SkMatrix* matrix,
|
| - const SkPaint& paint) {
|
| -
|
| +void SkPictureRecord::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
|
| + const SkMatrix* matrix, const SkPaint& paint) {
|
| #ifdef SK_COLLAPSE_MATRIX_CLIP_STATE
|
| fMCMgr.call(SkMatrixClipStateMgr::kOther_CallType);
|
| #endif
|
|
|