diff options
Diffstat (limited to 'libs/hwui/Matrix.h')
-rw-r--r-- | libs/hwui/Matrix.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libs/hwui/Matrix.h b/libs/hwui/Matrix.h index 22220a9..f86823d 100644 --- a/libs/hwui/Matrix.h +++ b/libs/hwui/Matrix.h @@ -112,11 +112,12 @@ public: multiply(u); } - bool isPureTranslate(); - bool isSimple(); - bool isIdentity(); + bool isPureTranslate() const; + bool isSimple() const; + bool isIdentity() const; + bool isPerspective() const; - bool changesBounds(); + bool changesBounds() const; void copyTo(float* v) const; void copyTo(SkMatrix& v) const; |