diff options
| author | 2012-09-20 17:40:38 -0700 | |
|---|---|---|
| committer | 2012-09-20 17:40:39 -0700 | |
| commit | 596bcc23a7cbf07d1465cfc8caa33b6c87fe6a16 (patch) | |
| tree | 00fbf252e2c34a83d963ca2d9ec5607a2c43a124 /libs/hwui/Caches.cpp | |
| parent | 0aac9b7d53946c6e5d8d3855afb3d993aee14519 (diff) | |
| parent | 57b5268708c3b974296c7d4e58a02a957979224a (diff) | |
Merge "Optimize tiling management Bug #7186819" into jb-mr1-dev
Diffstat (limited to 'libs/hwui/Caches.cpp')
| -rw-r--r-- | libs/hwui/Caches.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Caches.cpp b/libs/hwui/Caches.cpp index b149bb9083d5..068eb9ecf3aa 100644 --- a/libs/hwui/Caches.cpp +++ b/libs/hwui/Caches.cpp @@ -429,7 +429,7 @@ void Caches::resetScissor() { void Caches::startTiling(GLuint x, GLuint y, GLuint width, GLuint height, bool opaque) { if (extensions.hasTiledRendering()) { - glStartTilingQCOM(x, y, width, height, GL_COLOR_BUFFER_BIT0_QCOM); + glStartTilingQCOM(x, y, width, height, opaque ? GL_NONE : GL_COLOR_BUFFER_BIT0_QCOM); } } |