Index: src/core/SkRecorder.cpp |
diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp |
index d49de20e6865bb87a1757357237f27e80d32ef9f..e68dd17c9ba1930206f7be22df0608a6f8cb65de 100644 |
--- a/src/core/SkRecorder.cpp |
+++ b/src/core/SkRecorder.cpp |
@@ -243,7 +243,7 @@ void SkRecorder::onPopCull() { |
} |
void SkRecorder::didConcat(const SkMatrix& matrix) { |
- APPEND(Concat, matrix); |
+ this->didSetMatrix(this->getTotalMatrix()); |
INHERITED(didConcat, matrix); |
reed1
2014/08/19 13:59:31
I vote to either move this INHERITED line above th
mtklein
2014/08/19 14:01:58
Done, to all the INHERITED calls which are always
|
} |