diff options
| author | 2011-08-11 17:31:42 -0700 | |
|---|---|---|
| committer | 2011-08-11 17:37:02 -0700 | |
| commit | 9d865512f1a39bac6bed612b24023213d5a1fb1d (patch) | |
| tree | ab2c197947927eb61cbb54faa460b85cd0e7e155 /libs/hwui/OpenGLRenderer.cpp | |
| parent | e63a4f35c94f32dbc13533ddfb7334f9706be844 (diff) | |
Remove unnecessary private API
Change-Id: I2ecb367528ec0691c07153a3d163b82a6ca33fdf
Diffstat (limited to 'libs/hwui/OpenGLRenderer.cpp')
| -rw-r--r-- | libs/hwui/OpenGLRenderer.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libs/hwui/OpenGLRenderer.cpp b/libs/hwui/OpenGLRenderer.cpp index ed2fa3c6e107..4864cff6931d 100644 --- a/libs/hwui/OpenGLRenderer.cpp +++ b/libs/hwui/OpenGLRenderer.cpp @@ -924,13 +924,6 @@ void OpenGLRenderer::setMatrix(SkMatrix* matrix) { mSnapshot->transform->load(*matrix); } -const float* OpenGLRenderer::getMatrix() const { - if (mSnapshot->fbo != 0) { - return &mSnapshot->transform->data[0]; - } - return &mIdentity.data[0]; -} - void OpenGLRenderer::getMatrix(SkMatrix* matrix) { mSnapshot->transform->copyTo(*matrix); } |