diff options
author | Chris Craik <ccraik@google.com> | 2012-09-17 17:25:49 -0700 |
---|---|---|
committer | Chris Craik <ccraik@google.com> | 2012-09-20 13:08:20 -0700 |
commit | 710f46d9d6a5bf9ea1c1833384caf61e1934124f (patch) | |
tree | 5dbc56cf9b6bb957f9cbdaaff7283d44897b265d /libs/hwui/Matrix.h | |
parent | 5ca88a103c2841b64bfa01b4848aec4b8aa64687 (diff) |
Polygonal rendering of simple fill shapes
bug:4419017
Change-Id: If0428e1732139786cba15f54b285d880e4a56b89
Diffstat (limited to 'libs/hwui/Matrix.h')
-rw-r--r-- | libs/hwui/Matrix.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/hwui/Matrix.h b/libs/hwui/Matrix.h index 22220a93c0ad..02b781e067cc 100644 --- a/libs/hwui/Matrix.h +++ b/libs/hwui/Matrix.h @@ -112,11 +112,11 @@ public: multiply(u); } - bool isPureTranslate(); - bool isSimple(); - bool isIdentity(); + bool isPureTranslate() const; + bool isSimple() const; + bool isIdentity() const; - bool changesBounds(); + bool changesBounds() const; void copyTo(float* v) const; void copyTo(SkMatrix& v) const; |