aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar fs <fs@opera.com>2014-12-16 08:36:11 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-12-16 08:36:11 -0800
commit88640cf363ac15761784902706296b7a611a42d4 (patch)
tree9c545fdc23b2218ff07ec5c4cf753dcfbf02c81a /src
parent478dd723362fefc2023aee03e11216d913eeac03 (diff)
SkMatrix44(const SkMatrix&) needs to initialize the type mask
Diffstat (limited to 'src')
-rw-r--r--src/utils/SkMatrix44.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/SkMatrix44.cpp b/src/utils/SkMatrix44.cpp
index 1835635f1d..731cb41377 100644
--- a/src/utils/SkMatrix44.cpp
+++ b/src/utils/SkMatrix44.cpp
@@ -939,7 +939,7 @@ static void initFromMatrix(SkMScalar dst[4][4], const SkMatrix& src) {
}
SkMatrix44::SkMatrix44(const SkMatrix& src) {
- initFromMatrix(fMat, src);
+ this->operator=(src);
}
SkMatrix44& SkMatrix44::operator=(const SkMatrix& src) {