Index: src/core/SkRecorder.cpp |
diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp |
index a3c9513168ec02f7d21b4dcf11d6c2c019c360b2..d90b2c025ac0635f526cd0543c7118441c093b9b 100644 |
--- a/src/core/SkRecorder.cpp |
+++ b/src/core/SkRecorder.cpp |
@@ -352,15 +352,10 @@ void SkRecorder::didRestore() { |
} |
void SkRecorder::didConcat(const SkMatrix& matrix) { |
- this->didSetMatrix(this->getTotalMatrix()); |
+ APPEND(Concat, matrix); |
} |
void SkRecorder::didSetMatrix(const SkMatrix& matrix) { |
- SkDEVCODE(if (matrix != this->getTotalMatrix()) { |
- matrix.dump(); |
- this->getTotalMatrix().dump(); |
- SkASSERT(matrix == this->getTotalMatrix()); |
- }) |
APPEND(SetMatrix, matrix); |
} |