diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/utils/SkMatrix44.h | 4 |
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 |