diff options
| author | 2014-05-30 15:34:33 +0000 | |
|---|---|---|
| committer | 2014-05-30 15:34:34 +0000 | |
| commit | b2367cbf396f564cb6c66c0aaa51710ffa7bc052 (patch) | |
| tree | 63f2adef21e715af93eedfd269758fb4e8746423 /libs/hwui/RenderNode.cpp | |
| parent | c2e1dcd428e1959870f24bef254f17e4fa9eea36 (diff) | |
| parent | 139088228faa7f3c446af7387e017933998a5570 (diff) | |
Merge "Update HWUI matrix API"
Diffstat (limited to 'libs/hwui/RenderNode.cpp')
| -rw-r--r-- | libs/hwui/RenderNode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/RenderNode.cpp b/libs/hwui/RenderNode.cpp index d964efc1c3e4..baf372a49b16 100644 --- a/libs/hwui/RenderNode.cpp +++ b/libs/hwui/RenderNode.cpp @@ -223,9 +223,9 @@ void RenderNode::setViewProperties(OpenGLRenderer& renderer, T& handler) { renderer.translate(properties().getLeft(), properties().getTop()); } if (properties().getStaticMatrix()) { - renderer.concatMatrix(properties().getStaticMatrix()); + renderer.concatMatrix(*properties().getStaticMatrix()); } else if (properties().getAnimationMatrix()) { - renderer.concatMatrix(properties().getAnimationMatrix()); + renderer.concatMatrix(*properties().getAnimationMatrix()); } if (properties().hasTransformMatrix()) { if (properties().isTransformTranslateOnly()) { |