diff options
author | 2011-01-18 11:19:19 -0800 | |
---|---|---|
committer | 2011-01-18 11:19:19 -0800 | |
commit | 807daf7df615b60ce6fc41355aabe3aa353cebab (patch) | |
tree | 96eeb8bde5042241238946f787d1dbc3a416d6e6 /libs/hwui/OpenGLRenderer.h | |
parent | d6cd572df8067c40b3e0e7e74e58cdb456b33e92 (diff) |
Add support for skew()
Change-Id: Ia3a9a867f74fd78b61f75179e3788fdc2f0cacd0
Diffstat (limited to 'libs/hwui/OpenGLRenderer.h')
-rw-r--r-- | libs/hwui/OpenGLRenderer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/hwui/OpenGLRenderer.h b/libs/hwui/OpenGLRenderer.h index 7387b9268c39..272c5c249b04 100644 --- a/libs/hwui/OpenGLRenderer.h +++ b/libs/hwui/OpenGLRenderer.h @@ -84,6 +84,7 @@ public: virtual void translate(float dx, float dy); virtual void rotate(float degrees); virtual void scale(float sx, float sy); + virtual void skew(float sx, float sy); const float* getMatrix() const; void getMatrix(SkMatrix* matrix); |