blob: dee0dcdebd03372e99d4553d21907e90e9bcc785 [file] [log] [blame]
Chet Haasedd78cca2010-10-22 18:59:26 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "OpenGLRenderer"
18
19#include "Caches.h"
Chris Craik65fe5ee2015-01-26 18:06:29 -080020
Romain Guybb0acdf2012-03-05 13:44:35 -080021#include "DisplayListRenderer.h"
Tom Hudson2dc236b2014-10-15 15:46:42 -040022#include "GammaFontRenderer.h"
Romain Guy09b7c912011-02-02 20:28:09 -080023#include "LayerRenderer.h"
Chris Craik65fe5ee2015-01-26 18:06:29 -080024#include "Properties.h"
25#include "renderstate/RenderState.h"
ztenghui63d41ab2014-02-14 13:13:41 -080026#include "ShadowTessellator.h"
Chris Craik65fe5ee2015-01-26 18:06:29 -080027
28#include <utils/Log.h>
29#include <utils/String8.h>
Chet Haasedd78cca2010-10-22 18:59:26 -070030
31namespace android {
Chet Haasedd78cca2010-10-22 18:59:26 -070032namespace uirenderer {
33
Chris Craik96a5c4c2015-01-27 15:46:35 -080034Caches* Caches::sInstance = nullptr;
35
Chet Haasedd78cca2010-10-22 18:59:26 -070036///////////////////////////////////////////////////////////////////////////////
Romain Guybdf76092011-07-18 15:00:43 -070037// Macros
38///////////////////////////////////////////////////////////////////////////////
39
40#if DEBUG_CACHE_FLUSH
Steve Block5baa3a62011-12-20 16:23:08 +000041 #define FLUSH_LOGD(...) ALOGD(__VA_ARGS__)
Romain Guybdf76092011-07-18 15:00:43 -070042#else
43 #define FLUSH_LOGD(...)
44#endif
45
46///////////////////////////////////////////////////////////////////////////////
Chet Haasedd78cca2010-10-22 18:59:26 -070047// Constructors/destructor
48///////////////////////////////////////////////////////////////////////////////
49
Chris Craik96a5c4c2015-01-27 15:46:35 -080050Caches::Caches(RenderState& renderState)
51 : patchCache(renderState)
52 , mRenderState(&renderState)
53 , mExtensions(Extensions::getInstance())
54 , mInitialized(false) {
55 INIT_LOGD("Creating OpenGL renderer caches");
Romain Guy8ff6b9e2011-11-09 20:10:18 -080056 init();
Romain Guyb1d0a4e2012-07-13 18:25:35 -070057 initFont();
Romain Guydfa10462012-05-12 16:18:58 -070058 initConstraints();
Romain Guy4ff0cf42012-08-06 14:51:10 -070059 initProperties();
Romain Guyf9f00162013-05-09 11:50:12 -070060 initStaticProperties();
Romain Guy0f667532013-03-01 14:31:04 -080061 initExtensions();
Chris Craikba9b6132013-12-15 17:10:19 -080062 initTempProperties();
Romain Guye190aa62010-11-10 19:01:29 -080063
64 mDebugLevel = readDebugLevel();
Chris Craik96a5c4c2015-01-27 15:46:35 -080065 ALOGD_IF(mDebugLevel != kDebugDisabled,
66 "Enabling debug mode %d", mDebugLevel);
Chet Haasedd78cca2010-10-22 18:59:26 -070067}
68
Romain Guy3b748a42013-04-17 18:54:38 -070069bool Caches::init() {
70 if (mInitialized) return false;
Romain Guy8ff6b9e2011-11-09 20:10:18 -080071
John Reckfbc8df02014-11-14 16:18:41 -080072 ATRACE_NAME("Caches::init");
73
Romain Guya1d3c912011-12-13 14:55:06 -080074 glActiveTexture(gTextureUnits[0]);
75 mTextureUnit = 0;
76
Chris Craikd41c4d82015-01-05 15:51:13 -080077 mRegionMesh = nullptr;
Romain Guy8ff6b9e2011-11-09 20:10:18 -080078 blend = false;
79 lastSrcMode = GL_ZERO;
80 lastDstMode = GL_ZERO;
Chris Craikd41c4d82015-01-05 15:51:13 -080081 currentProgram = nullptr;
Romain Guy8ff6b9e2011-11-09 20:10:18 -080082
Romain Guy54c1a642012-09-27 17:55:46 -070083 mFunctorsCount = 0;
84
Romain Guyc2a97212013-02-06 15:29:46 -080085 debugLayersUpdates = false;
86 debugOverdraw = false;
Romain Guy3ff0bfd2013-02-25 14:15:37 -080087 debugStencilClip = kStencilHide;
Romain Guyc2a97212013-02-06 15:29:46 -080088
Chris Craik96a5c4c2015-01-27 15:46:35 -080089 patchCache.init();
Romain Guy3b748a42013-04-17 18:54:38 -070090
Romain Guy8ff6b9e2011-11-09 20:10:18 -080091 mInitialized = true;
Romain Guy3b748a42013-04-17 18:54:38 -070092
Romain Guy8aa195d2013-06-04 18:00:09 -070093 resetBoundTextures();
Chris Craik96a5c4c2015-01-27 15:46:35 -080094 mPixelBufferState.reset(new PixelBufferState());
Romain Guy8aa195d2013-06-04 18:00:09 -070095
Romain Guy3b748a42013-04-17 18:54:38 -070096 return true;
Romain Guy8ff6b9e2011-11-09 20:10:18 -080097}
98
Romain Guyb1d0a4e2012-07-13 18:25:35 -070099void Caches::initFont() {
100 fontRenderer = GammaFontRenderer::createRenderer();
101}
102
Romain Guydfa10462012-05-12 16:18:58 -0700103void Caches::initExtensions() {
Romain Guy3bbacf22013-02-06 16:51:04 -0800104 if (mExtensions.hasDebugMarker()) {
Romain Guydfa10462012-05-12 16:18:58 -0700105 eventMark = glInsertEventMarkerEXT;
Romain Guy0f667532013-03-01 14:31:04 -0800106
Chris Craikff785832013-03-08 13:12:16 -0800107 startMark = glPushGroupMarkerEXT;
108 endMark = glPopGroupMarkerEXT;
Romain Guydfa10462012-05-12 16:18:58 -0700109 } else {
110 eventMark = eventMarkNull;
111 startMark = startMarkNull;
112 endMark = endMarkNull;
113 }
114
Romain Guy0f667532013-03-01 14:31:04 -0800115 if (mExtensions.hasDebugLabel() && (drawDeferDisabled || drawReorderDisabled)) {
Romain Guydfa10462012-05-12 16:18:58 -0700116 setLabel = glLabelObjectEXT;
117 getLabel = glGetObjectLabelEXT;
118 } else {
119 setLabel = setLabelNull;
120 getLabel = getLabelNull;
121 }
122}
123
124void Caches::initConstraints() {
125 GLint maxTextureUnits;
126 glGetIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxTextureUnits);
127 if (maxTextureUnits < REQUIRED_TEXTURE_UNITS_COUNT) {
128 ALOGW("At least %d texture units are required!", REQUIRED_TEXTURE_UNITS_COUNT);
129 }
130
131 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize);
132}
133
Romain Guyf9f00162013-05-09 11:50:12 -0700134void Caches::initStaticProperties() {
135 gpuPixelBuffersEnabled = false;
136
137 // OpenGL ES 3.0+ specific features
Romain Guy7f430762013-06-13 14:29:40 -0700138 if (mExtensions.hasPixelBufferObjects()) {
Romain Guyf9f00162013-05-09 11:50:12 -0700139 char property[PROPERTY_VALUE_MAX];
140 if (property_get(PROPERTY_ENABLE_GPU_PIXEL_BUFFERS, property, "true") > 0) {
141 gpuPixelBuffersEnabled = !strcmp(property, "true");
142 }
143 }
144}
145
Romain Guy5bb3c732012-11-29 17:52:58 -0800146bool Caches::initProperties() {
147 bool prevDebugLayersUpdates = debugLayersUpdates;
148 bool prevDebugOverdraw = debugOverdraw;
Romain Guy3ff0bfd2013-02-25 14:15:37 -0800149 StencilClipDebug prevDebugStencilClip = debugStencilClip;
Romain Guy5bb3c732012-11-29 17:52:58 -0800150
Romain Guy4ff0cf42012-08-06 14:51:10 -0700151 char property[PROPERTY_VALUE_MAX];
Chris Craikd41c4d82015-01-05 15:51:13 -0800152 if (property_get(PROPERTY_DEBUG_LAYERS_UPDATES, property, nullptr) > 0) {
Romain Guy4ff0cf42012-08-06 14:51:10 -0700153 INIT_LOGD(" Layers updates debug enabled: %s", property);
154 debugLayersUpdates = !strcmp(property, "true");
155 } else {
156 debugLayersUpdates = false;
157 }
Romain Guy7c450aa2012-09-21 19:15:00 -0700158
Romain Guy627c6fd2013-08-21 11:53:18 -0700159 debugOverdraw = false;
Chris Craikd41c4d82015-01-05 15:51:13 -0800160 if (property_get(PROPERTY_DEBUG_OVERDRAW, property, nullptr) > 0) {
Romain Guy7c450aa2012-09-21 19:15:00 -0700161 INIT_LOGD(" Overdraw debug enabled: %s", property);
Romain Guy627c6fd2013-08-21 11:53:18 -0700162 if (!strcmp(property, "show")) {
163 debugOverdraw = true;
164 mOverdrawDebugColorSet = kColorSet_Default;
165 } else if (!strcmp(property, "show_deuteranomaly")) {
166 debugOverdraw = true;
167 mOverdrawDebugColorSet = kColorSet_Deuteranomaly;
168 }
Romain Guy7c450aa2012-09-21 19:15:00 -0700169 }
Romain Guy5bb3c732012-11-29 17:52:58 -0800170
Romain Guy3ff0bfd2013-02-25 14:15:37 -0800171 // See Properties.h for valid values
Chris Craikd41c4d82015-01-05 15:51:13 -0800172 if (property_get(PROPERTY_DEBUG_STENCIL_CLIP, property, nullptr) > 0) {
Romain Guy3ff0bfd2013-02-25 14:15:37 -0800173 INIT_LOGD(" Stencil clip debug enabled: %s", property);
174 if (!strcmp(property, "hide")) {
175 debugStencilClip = kStencilHide;
176 } else if (!strcmp(property, "highlight")) {
177 debugStencilClip = kStencilShowHighlight;
178 } else if (!strcmp(property, "region")) {
179 debugStencilClip = kStencilShowRegion;
180 }
181 } else {
182 debugStencilClip = kStencilHide;
183 }
184
Romain Guy0f667532013-03-01 14:31:04 -0800185 if (property_get(PROPERTY_DISABLE_DRAW_DEFER, property, "false")) {
186 drawDeferDisabled = !strcasecmp(property, "true");
187 INIT_LOGD(" Draw defer %s", drawDeferDisabled ? "disabled" : "enabled");
188 } else {
Chris Craik58ddced2014-07-16 19:11:46 -0700189 drawDeferDisabled = false;
Romain Guy0f667532013-03-01 14:31:04 -0800190 INIT_LOGD(" Draw defer enabled");
191 }
192
193 if (property_get(PROPERTY_DISABLE_DRAW_REORDER, property, "false")) {
194 drawReorderDisabled = !strcasecmp(property, "true");
195 INIT_LOGD(" Draw reorder %s", drawReorderDisabled ? "disabled" : "enabled");
196 } else {
Chris Craik58ddced2014-07-16 19:11:46 -0700197 drawReorderDisabled = false;
Romain Guy0f667532013-03-01 14:31:04 -0800198 INIT_LOGD(" Draw reorder enabled");
199 }
200
Romain Guy5bb3c732012-11-29 17:52:58 -0800201 return (prevDebugLayersUpdates != debugLayersUpdates) ||
Romain Guy3ff0bfd2013-02-25 14:15:37 -0800202 (prevDebugOverdraw != debugOverdraw) ||
203 (prevDebugStencilClip != debugStencilClip);
Romain Guy4ff0cf42012-08-06 14:51:10 -0700204}
205
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800206void Caches::terminate() {
207 if (!mInitialized) return;
Chris Craik51d6a3d2014-12-22 17:16:56 -0800208 mRegionMesh.release();
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800209
210 fboCache.clear();
211
212 programCache.clear();
Chris Craikd41c4d82015-01-05 15:51:13 -0800213 currentProgram = nullptr;
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800214
Romain Guy3b748a42013-04-17 18:54:38 -0700215 patchCache.clear();
216
Romain Guy46bfc482013-08-16 18:38:29 -0700217 clearGarbage();
218
Chris Craik96a5c4c2015-01-27 15:46:35 -0800219 mPixelBufferState.release();
220
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800221 mInitialized = false;
Romain Guy5b3b3522010-10-27 18:57:51 -0700222}
223
224///////////////////////////////////////////////////////////////////////////////
Romain Guyc15008e2010-11-10 11:59:15 -0800225// Debug
226///////////////////////////////////////////////////////////////////////////////
227
Romain Guy627c6fd2013-08-21 11:53:18 -0700228uint32_t Caches::getOverdrawColor(uint32_t amount) const {
229 static uint32_t sOverdrawColors[2][4] = {
230 { 0x2f0000ff, 0x2f00ff00, 0x3fff0000, 0x7fff0000 },
231 { 0x2f0000ff, 0x4fffff00, 0x5fff8ad8, 0x7fff0000 }
232 };
233 if (amount < 1) amount = 1;
234 if (amount > 4) amount = 4;
235 return sOverdrawColors[mOverdrawDebugColorSet][amount - 1];
236}
237
Romain Guyc15008e2010-11-10 11:59:15 -0800238void Caches::dumpMemoryUsage() {
Chet Haase9c1e23b2011-03-24 10:51:31 -0700239 String8 stringLog;
240 dumpMemoryUsage(stringLog);
Steve Block5baa3a62011-12-20 16:23:08 +0000241 ALOGD("%s", stringLog.string());
Chet Haase9c1e23b2011-03-24 10:51:31 -0700242}
243
244void Caches::dumpMemoryUsage(String8 &log) {
John Reck0e89e2b2014-10-31 14:49:06 -0700245 uint32_t total = 0;
Chet Haase9c1e23b2011-03-24 10:51:31 -0700246 log.appendFormat("Current memory usage / total memory usage (bytes):\n");
247 log.appendFormat(" TextureCache %8d / %8d\n",
248 textureCache.getSize(), textureCache.getMaxSize());
John Reck17035b02014-09-03 07:39:53 -0700249 log.appendFormat(" LayerCache %8d / %8d (numLayers = %zu)\n",
250 layerCache.getSize(), layerCache.getMaxSize(), layerCache.getCount());
John Reck0e89e2b2014-10-31 14:49:06 -0700251 if (mRenderState) {
252 int memused = 0;
253 for (std::set<const Layer*>::iterator it = mRenderState->mActiveLayers.begin();
254 it != mRenderState->mActiveLayers.end(); it++) {
255 const Layer* layer = *it;
256 log.appendFormat(" Layer size %dx%d; isTextureLayer()=%d; texid=%u fbo=%u; refs=%d\n",
257 layer->getWidth(), layer->getHeight(),
258 layer->isTextureLayer(), layer->getTexture(),
259 layer->getFbo(), layer->getStrongCount());
John Reck88f5fc72014-11-03 10:32:24 -0800260 memused += layer->getWidth() * layer->getHeight() * 4;
John Reck0e89e2b2014-10-31 14:49:06 -0700261 }
262 log.appendFormat(" Layers total %8d (numLayers = %zu)\n",
263 memused, mRenderState->mActiveLayers.size());
264 total += memused;
265 }
Romain Guy8d4aeb72013-02-12 16:08:55 -0800266 log.appendFormat(" RenderBufferCache %8d / %8d\n",
267 renderBufferCache.getSize(), renderBufferCache.getMaxSize());
Chet Haase9c1e23b2011-03-24 10:51:31 -0700268 log.appendFormat(" GradientCache %8d / %8d\n",
269 gradientCache.getSize(), gradientCache.getMaxSize());
270 log.appendFormat(" PathCache %8d / %8d\n",
271 pathCache.getSize(), pathCache.getMaxSize());
Chris Craik05f3d6e2014-06-02 16:27:04 -0700272 log.appendFormat(" TessellationCache %8d / %8d\n",
273 tessellationCache.getSize(), tessellationCache.getMaxSize());
Chet Haase9c1e23b2011-03-24 10:51:31 -0700274 log.appendFormat(" TextDropShadowCache %8d / %8d\n", dropShadowCache.getSize(),
Romain Guyc15008e2010-11-10 11:59:15 -0800275 dropShadowCache.getMaxSize());
Romain Guy3b748a42013-04-17 18:54:38 -0700276 log.appendFormat(" PatchCache %8d / %8d\n",
277 patchCache.getSize(), patchCache.getMaxSize());
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700278 for (uint32_t i = 0; i < fontRenderer->getFontRendererCount(); i++) {
Victoria Lease1e546812013-06-25 14:25:17 -0700279 const uint32_t sizeA8 = fontRenderer->getFontRendererSize(i, GL_ALPHA);
280 const uint32_t sizeRGBA = fontRenderer->getFontRendererSize(i, GL_RGBA);
281 log.appendFormat(" FontRenderer %d A8 %8d / %8d\n", i, sizeA8, sizeA8);
282 log.appendFormat(" FontRenderer %d RGBA %8d / %8d\n", i, sizeRGBA, sizeRGBA);
283 log.appendFormat(" FontRenderer %d total %8d / %8d\n", i, sizeA8 + sizeRGBA,
284 sizeA8 + sizeRGBA);
Romain Guyc15008e2010-11-10 11:59:15 -0800285 }
Romain Guyd2ba50a2011-05-27 10:21:07 -0700286 log.appendFormat("Other:\n");
Chet Haase9c1e23b2011-03-24 10:51:31 -0700287 log.appendFormat(" FboCache %8d / %8d\n",
288 fboCache.getSize(), fboCache.getMaxSize());
Romain Guyc15008e2010-11-10 11:59:15 -0800289
Romain Guyc15008e2010-11-10 11:59:15 -0800290 total += textureCache.getSize();
Romain Guy8d4aeb72013-02-12 16:08:55 -0800291 total += renderBufferCache.getSize();
Romain Guyc15008e2010-11-10 11:59:15 -0800292 total += gradientCache.getSize();
293 total += pathCache.getSize();
Chris Craik05f3d6e2014-06-02 16:27:04 -0700294 total += tessellationCache.getSize();
Romain Guyc15008e2010-11-10 11:59:15 -0800295 total += dropShadowCache.getSize();
Romain Guy3b748a42013-04-17 18:54:38 -0700296 total += patchCache.getSize();
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700297 for (uint32_t i = 0; i < fontRenderer->getFontRendererCount(); i++) {
Victoria Lease1e546812013-06-25 14:25:17 -0700298 total += fontRenderer->getFontRendererSize(i, GL_ALPHA);
299 total += fontRenderer->getFontRendererSize(i, GL_RGBA);
Romain Guyc15008e2010-11-10 11:59:15 -0800300 }
301
Chet Haase9c1e23b2011-03-24 10:51:31 -0700302 log.appendFormat("Total memory usage:\n");
303 log.appendFormat(" %d bytes, %.2f MB\n", total, total / 1024.0f / 1024.0f);
Romain Guyc15008e2010-11-10 11:59:15 -0800304}
305
306///////////////////////////////////////////////////////////////////////////////
Romain Guyfe48f652010-11-11 15:36:56 -0800307// Memory management
308///////////////////////////////////////////////////////////////////////////////
309
310void Caches::clearGarbage() {
311 textureCache.clearGarbage();
Romain Guyfe48f652010-11-11 15:36:56 -0800312 pathCache.clearGarbage();
Romain Guye3b0a012013-06-26 15:45:41 -0700313 patchCache.clearGarbage();
Romain Guyfe48f652010-11-11 15:36:56 -0800314}
315
Romain Guybdf76092011-07-18 15:00:43 -0700316void Caches::flush(FlushMode mode) {
317 FLUSH_LOGD("Flushing caches (mode %d)", mode);
318
Romain Guyb0a41ed2013-08-16 14:44:38 -0700319 // We must stop tasks before clearing caches
320 if (mode > kFlushMode_Layers) {
321 tasks.stop();
322 }
323
Romain Guybdf76092011-07-18 15:00:43 -0700324 switch (mode) {
325 case kFlushMode_Full:
326 textureCache.clear();
327 patchCache.clear();
328 dropShadowCache.clear();
329 gradientCache.clear();
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700330 fontRenderer->clear();
Romain Guyb7463712013-08-16 13:55:29 -0700331 fboCache.clear();
Romain Guy211efea2012-07-31 21:16:07 -0700332 dither.clear();
Romain Guybdf76092011-07-18 15:00:43 -0700333 // fall through
334 case kFlushMode_Moderate:
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700335 fontRenderer->flush();
Romain Guyeca0ca22011-11-04 15:12:29 -0700336 textureCache.flush();
Romain Guybdf76092011-07-18 15:00:43 -0700337 pathCache.clear();
Chris Craik05f3d6e2014-06-02 16:27:04 -0700338 tessellationCache.clear();
Romain Guy6d7475d2011-07-27 16:28:21 -0700339 // fall through
340 case kFlushMode_Layers:
341 layerCache.clear();
Romain Guy8d4aeb72013-02-12 16:08:55 -0800342 renderBufferCache.clear();
Romain Guybdf76092011-07-18 15:00:43 -0700343 break;
344 }
Chet Haase6a2d17f2012-09-30 12:14:13 -0700345
346 clearGarbage();
John Reck4ced2622014-09-19 10:10:19 -0700347 glFinish();
Romain Guybdf76092011-07-18 15:00:43 -0700348}
349
Romain Guyfe48f652010-11-11 15:36:56 -0800350///////////////////////////////////////////////////////////////////////////////
Chris Craik96a5c4c2015-01-27 15:46:35 -0800351// Textures
Romain Guy5b3b3522010-10-27 18:57:51 -0700352///////////////////////////////////////////////////////////////////////////////
353
Romain Guya1d3c912011-12-13 14:55:06 -0800354void Caches::activeTexture(GLuint textureUnit) {
355 if (mTextureUnit != textureUnit) {
356 glActiveTexture(gTextureUnits[textureUnit]);
357 mTextureUnit = textureUnit;
358 }
359}
360
Chris Craik9ab2d182013-07-22 16:16:06 -0700361void Caches::resetActiveTexture() {
362 mTextureUnit = -1;
363}
364
Romain Guy8aa195d2013-06-04 18:00:09 -0700365void Caches::bindTexture(GLuint texture) {
366 if (mBoundTextures[mTextureUnit] != texture) {
367 glBindTexture(GL_TEXTURE_2D, texture);
368 mBoundTextures[mTextureUnit] = texture;
369 }
370}
371
372void Caches::bindTexture(GLenum target, GLuint texture) {
Fred Fettinger70735bd2014-08-29 14:02:31 -0500373 if (target == GL_TEXTURE_2D) {
374 bindTexture(texture);
375 } else {
376 // GLConsumer directly calls glBindTexture() with
377 // target=GL_TEXTURE_EXTERNAL_OES, don't cache this target
378 // since the cached state could be stale
Romain Guy8aa195d2013-06-04 18:00:09 -0700379 glBindTexture(target, texture);
Romain Guy8aa195d2013-06-04 18:00:09 -0700380 }
381}
382
Romain Guybe1b1272013-06-06 14:02:54 -0700383void Caches::deleteTexture(GLuint texture) {
384 // When glDeleteTextures() is called on a currently bound texture,
385 // OpenGL ES specifies that the texture is then considered unbound
386 // Consider the following series of calls:
387 //
388 // glGenTextures -> creates texture name 2
389 // glBindTexture(2)
390 // glDeleteTextures(2) -> 2 is now unbound
391 // glGenTextures -> can return 2 again
392 //
393 // If we don't call glBindTexture(2) after the second glGenTextures
394 // call, any texture operation will be performed on the default
395 // texture (name=0)
396
jiayuanr4a473c7d2014-06-10 17:41:49 +0800397 unbindTexture(texture);
398
Romain Guybe1b1272013-06-06 14:02:54 -0700399 glDeleteTextures(1, &texture);
400}
401
Romain Guy8aa195d2013-06-04 18:00:09 -0700402void Caches::resetBoundTextures() {
403 memset(mBoundTextures, 0, REQUIRED_TEXTURE_UNITS_COUNT * sizeof(GLuint));
404}
405
jiayuanr4a473c7d2014-06-10 17:41:49 +0800406void Caches::unbindTexture(GLuint texture) {
407 for (int i = 0; i < REQUIRED_TEXTURE_UNITS_COUNT; i++) {
408 if (mBoundTextures[i] == texture) {
409 mBoundTextures[i] = 0;
410 }
411 }
412}
413
Romain Guy85ef80d2012-09-13 20:26:50 -0700414///////////////////////////////////////////////////////////////////////////////
Romain Guy85ef80d2012-09-13 20:26:50 -0700415// Tiling
416///////////////////////////////////////////////////////////////////////////////
417
Romain Guyf735c8e2013-01-31 17:45:55 -0800418void Caches::startTiling(GLuint x, GLuint y, GLuint width, GLuint height, bool discard) {
Romain Guy3bbacf22013-02-06 16:51:04 -0800419 if (mExtensions.hasTiledRendering() && !debugOverdraw) {
Romain Guyf735c8e2013-01-31 17:45:55 -0800420 glStartTilingQCOM(x, y, width, height, (discard ? GL_NONE : GL_COLOR_BUFFER_BIT0_QCOM));
Romain Guy85ef80d2012-09-13 20:26:50 -0700421 }
422}
423
424void Caches::endTiling() {
Romain Guy3bbacf22013-02-06 16:51:04 -0800425 if (mExtensions.hasTiledRendering() && !debugOverdraw) {
Romain Guy2b7028e2012-09-19 17:25:38 -0700426 glEndTilingQCOM(GL_COLOR_BUFFER_BIT0_QCOM);
Romain Guy85ef80d2012-09-13 20:26:50 -0700427 }
428}
429
Romain Guy54c1a642012-09-27 17:55:46 -0700430bool Caches::hasRegisteredFunctors() {
431 return mFunctorsCount > 0;
432}
433
434void Caches::registerFunctors(uint32_t functorCount) {
435 mFunctorsCount += functorCount;
436}
437
438void Caches::unregisterFunctors(uint32_t functorCount) {
439 if (functorCount > mFunctorsCount) {
440 mFunctorsCount = 0;
441 } else {
442 mFunctorsCount -= functorCount;
443 }
444}
445
Romain Guy85ef80d2012-09-13 20:26:50 -0700446///////////////////////////////////////////////////////////////////////////////
447// Regions
448///////////////////////////////////////////////////////////////////////////////
449
Romain Guy5b3b3522010-10-27 18:57:51 -0700450TextureVertex* Caches::getRegionMesh() {
451 // Create the mesh, 2 triangles and 4 vertices per rectangle in the region
452 if (!mRegionMesh) {
Chris Craik96a5c4c2015-01-27 15:46:35 -0800453 mRegionMesh.reset(new TextureVertex[kMaxNumberOfQuads * 4]);
Romain Guy5b3b3522010-10-27 18:57:51 -0700454 }
455
Chris Craik51d6a3d2014-12-22 17:16:56 -0800456 return mRegionMesh.get();
Romain Guy5b3b3522010-10-27 18:57:51 -0700457}
458
Chris Craikba9b6132013-12-15 17:10:19 -0800459///////////////////////////////////////////////////////////////////////////////
460// Temporary Properties
461///////////////////////////////////////////////////////////////////////////////
462
463void Caches::initTempProperties() {
Chris Craikf5be3ca2014-04-30 18:20:03 -0700464 propertyLightDiameter = -1.0f;
465 propertyLightPosY = -1.0f;
466 propertyLightPosZ = -1.0f;
467 propertyAmbientRatio = -1.0f;
ztenghui14a4e352014-08-13 10:44:39 -0700468 propertyAmbientShadowStrength = -1;
469 propertySpotShadowStrength = -1;
Chris Craikba9b6132013-12-15 17:10:19 -0800470}
471
472void Caches::setTempProperty(const char* name, const char* value) {
473 ALOGD("setting property %s to %s", name, value);
Chris Craika736cd92014-08-04 13:18:38 -0700474 if (!strcmp(name, "ambientRatio")) {
Chris Craikf5be3ca2014-04-30 18:20:03 -0700475 propertyAmbientRatio = fmin(fmax(atof(value), 0.0), 10.0);
476 ALOGD("ambientRatio = %.2f", propertyAmbientRatio);
ztenghuicc3c2562014-01-17 10:34:10 -0800477 return;
Chris Craikf5be3ca2014-04-30 18:20:03 -0700478 } else if (!strcmp(name, "lightDiameter")) {
479 propertyLightDiameter = fmin(fmax(atof(value), 0.0), 3000.0);
480 ALOGD("lightDiameter = %.2f", propertyLightDiameter);
ztenghuicc3c2562014-01-17 10:34:10 -0800481 return;
Chris Craik59744b72014-07-01 17:56:52 -0700482 } else if (!strcmp(name, "lightPosY")) {
Chris Craikf5be3ca2014-04-30 18:20:03 -0700483 propertyLightPosY = fmin(fmax(atof(value), 0.0), 3000.0);
484 ALOGD("lightPos Y = %.2f", propertyLightPosY);
485 return;
Chris Craik59744b72014-07-01 17:56:52 -0700486 } else if (!strcmp(name, "lightPosZ")) {
Chris Craikf5be3ca2014-04-30 18:20:03 -0700487 propertyLightPosZ = fmin(fmax(atof(value), 0.0), 3000.0);
488 ALOGD("lightPos Z = %.2f", propertyLightPosZ);
ztenghuicc3c2562014-01-17 10:34:10 -0800489 return;
ztenghui14a4e352014-08-13 10:44:39 -0700490 } else if (!strcmp(name, "ambientShadowStrength")) {
491 propertyAmbientShadowStrength = atoi(value);
492 ALOGD("ambient shadow strength = 0x%x out of 0xff", propertyAmbientShadowStrength);
493 return;
494 } else if (!strcmp(name, "spotShadowStrength")) {
495 propertySpotShadowStrength = atoi(value);
496 ALOGD("spot shadow strength = 0x%x out of 0xff", propertySpotShadowStrength);
497 return;
Chris Craikba9b6132013-12-15 17:10:19 -0800498 }
499 ALOGD(" failed");
500}
501
Chet Haasedd78cca2010-10-22 18:59:26 -0700502}; // namespace uirenderer
503}; // namespace android