aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/utils/SkMatrix44.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/utils/SkMatrix44.h')
-rw-r--r--include/utils/SkMatrix44.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/utils/SkMatrix44.h b/include/utils/SkMatrix44.h
index 9926b79929..cff0d04a3d 100644
--- a/include/utils/SkMatrix44.h
+++ b/include/utils/SkMatrix44.h
@@ -201,9 +201,9 @@ public:
}
#ifdef SK_MSCALAR_IS_DOUBLE
- void mapMScalars(SkMScalar src[4], SkMScalar dst[4]) const;
+ void mapMScalars(const SkMScalar src[4], SkMScalar dst[4]) const;
#else
- void mapMScalars(SkMScalar src[4], SkMScalar dst[4]) const {
+ void mapMScalars(const SkMScalar src[4], SkMScalar dst[4]) const {
this->mapScalars(src, dst);
}
#endif