diff options
| author | 2010-10-13 15:17:00 -0700 | |
|---|---|---|
| committer | 2010-10-13 17:24:41 -0700 | |
| commit | 99bcdc52dcb365ed7d8cfa13540fb33fbcbbac9d (patch) | |
| tree | 6aa73d73948d851ea9b61c36e74a275c4092f5ad /libs/hwui/OpenGLRenderer.h | |
| parent | bbf68c6ad2cc3dd338f93779d60c5821e730a263 (diff) | |
Return identity matrix when rendering in an FBO.
Change-Id: I57438e745b30c8cfe16c269f3cafcd719049d705
Diffstat (limited to 'libs/hwui/OpenGLRenderer.h')
| -rw-r--r-- | libs/hwui/OpenGLRenderer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/hwui/OpenGLRenderer.h b/libs/hwui/OpenGLRenderer.h index f8828e2cbd7f..423614bb3e3c 100644 --- a/libs/hwui/OpenGLRenderer.h +++ b/libs/hwui/OpenGLRenderer.h @@ -432,6 +432,9 @@ private: // Misc GLint mMaxTextureSize; + // Indentity matrix + const mat4 mIdentity; + friend class DisplayListRenderer; }; // class OpenGLRenderer |