summaryrefslogtreecommitdiff
path: root/libs/hwui/Matrix.h
diff options
context:
space:
mode:
author Chris Craik <ccraik@google.com> 2015-08-19 15:10:24 -0700
committer Chris Craik <ccraik@google.com> 2015-08-19 15:10:25 -0700
commit7c85c54499994c687a833644f7f213e747fadb98 (patch)
tree42a87d7a8963fd633f988dc7900d69b6e1948ff1 /libs/hwui/Matrix.h
parente264f9a51ef2158df345c3c4b19dd6098e959141 (diff)
Remove Matrix4::load(Matrix4&)
bug:22320446 Change-Id: Id6d1cc9b4aea828b0cdf622ad672064d72671f8d
Diffstat (limited to 'libs/hwui/Matrix.h')
-rw-r--r--libs/hwui/Matrix.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/hwui/Matrix.h b/libs/hwui/Matrix.h
index ed54a25f3edf..ed517ac26295 100644
--- a/libs/hwui/Matrix.h
+++ b/libs/hwui/Matrix.h
@@ -114,7 +114,6 @@ public:
void loadIdentity();
void load(const float* v);
- void load(const Matrix4& v);
void load(const SkMatrix& v);
void loadInverse(const Matrix4& v);
@@ -139,7 +138,7 @@ public:
void multiply(const Matrix4& v) {
Matrix4 u;
u.loadMultiply(*this, v);
- load(u);
+ *this = u;
}
void multiply(float v);