| Index: src/core/SkRecorder.cpp
|
| diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp
|
| index ff5c27d7e5a6be0fe02f2e343112278c85bb0e0e..f4096f1a6be81886f13fcfb684b209cf0c1fb7f7 100644
|
| --- a/src/core/SkRecorder.cpp
|
| +++ b/src/core/SkRecorder.cpp
|
| @@ -359,6 +359,10 @@ void SkRecorder::didSetMatrix(const SkMatrix& matrix) {
|
| APPEND(SetMatrix, matrix);
|
| }
|
|
|
| +void SkRecorder::didTranslateZ(SkScalar z) {
|
| + APPEND(TranslateZ, z);
|
| +}
|
| +
|
| void SkRecorder::onClipRect(const SkRect& rect, SkRegion::Op op, ClipEdgeStyle edgeStyle) {
|
| INHERITED(onClipRect, rect, op, edgeStyle);
|
| SkRecords::RegionOpAndAA opAA(op, kSoft_ClipEdgeStyle == edgeStyle);
|
|
|