diff options
author | 2015-08-19 15:10:24 -0700 | |
---|---|---|
committer | 2015-08-19 15:10:25 -0700 | |
commit | 7c85c54499994c687a833644f7f213e747fadb98 (patch) | |
tree | 42a87d7a8963fd633f988dc7900d69b6e1948ff1 /libs/hwui/CanvasState.cpp | |
parent | e264f9a51ef2158df345c3c4b19dd6098e959141 (diff) |
Remove Matrix4::load(Matrix4&)
bug:22320446
Change-Id: Id6d1cc9b4aea828b0cdf622ad672064d72671f8d
Diffstat (limited to 'libs/hwui/CanvasState.cpp')
-rw-r--r-- | libs/hwui/CanvasState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/CanvasState.cpp b/libs/hwui/CanvasState.cpp index e22b0d3084ab..54fb5f233fce 100644 --- a/libs/hwui/CanvasState.cpp +++ b/libs/hwui/CanvasState.cpp @@ -138,7 +138,7 @@ void CanvasState::setMatrix(const SkMatrix& matrix) { } void CanvasState::setMatrix(const Matrix4& matrix) { - mSnapshot->transform->load(matrix); + *(mSnapshot->transform) = matrix; } void CanvasState::concatMatrix(const SkMatrix& matrix) { |