| Index: src/core/SkRecorder.cpp
|
| diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp
|
| index 76fd3b819eaca12263003df75725b825acf45d77..c7869bb6a46b1a4ea07a03fe1b7e846609165ca5 100644
|
| --- a/src/core/SkRecorder.cpp
|
| +++ b/src/core/SkRecorder.cpp
|
| @@ -304,20 +304,6 @@
|
| pic->playback(this);
|
| }
|
| }
|
| -
|
| -void SkRecorder::onDrawShadowedPicture(const SkPicture* pic,
|
| - const SkMatrix* matrix,
|
| - const SkPaint* paint) {
|
| - if (fDrawPictureMode == Record_DrawPictureMode) {
|
| - fApproxBytesUsedBySubPictures += SkPictureUtils::ApproximateBytesUsed(pic);
|
| - APPEND(DrawShadowedPicture, this->copy(paint), pic, matrix ? *matrix : SkMatrix::I());
|
| - } else {
|
| - SkASSERT(fDrawPictureMode == Playback_DrawPictureMode);
|
| - SkAutoCanvasMatrixPaint acmp(this, matrix, paint, pic->cullRect());
|
| - pic->playback(this);
|
| - }
|
| -}
|
| -
|
|
|
| void SkRecorder::onDrawVertices(VertexMode vmode,
|
| int vertexCount, const SkPoint vertices[],
|
| @@ -383,10 +369,8 @@
|
| APPEND(SetMatrix, matrix);
|
| }
|
|
|
| -void SkRecorder::didTranslateZ(SkScalar z) {
|
| -#ifdef SK_EXPERIMENTAL_SHADOWING
|
| +void SkRecorder::didTranslateZ(SkScalar z) {
|
| APPEND(TranslateZ, z);
|
| -#endif
|
| }
|
|
|
| void SkRecorder::onClipRect(const SkRect& rect, SkRegion::Op op, ClipEdgeStyle edgeStyle) {
|
|
|