blob: fd5a2cee46a450784e026838e3f92f85aaf15d49 [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
Tom Hudson2dc236b2014-10-15 15:46:42 -040021#include "GammaFontRenderer.h"
Romain Guy09b7c912011-02-02 20:28:09 -080022#include "LayerRenderer.h"
Chris Craik65fe5ee2015-01-26 18:06:29 -080023#include "Properties.h"
24#include "renderstate/RenderState.h"
ztenghui63d41ab2014-02-14 13:13:41 -080025#include "ShadowTessellator.h"
Chris Craik65fe5ee2015-01-26 18:06:29 -080026
27#include <utils/Log.h>
28#include <utils/String8.h>
Chet Haasedd78cca2010-10-22 18:59:26 -070029
30namespace android {
Chet Haasedd78cca2010-10-22 18:59:26 -070031namespace uirenderer {
32
Chris Craik96a5c4c2015-01-27 15:46:35 -080033Caches* Caches::sInstance = nullptr;
34
Chet Haasedd78cca2010-10-22 18:59:26 -070035///////////////////////////////////////////////////////////////////////////////
Romain Guybdf76092011-07-18 15:00:43 -070036// Macros
37///////////////////////////////////////////////////////////////////////////////
38
39#if DEBUG_CACHE_FLUSH
Steve Block5baa3a62011-12-20 16:23:08 +000040 #define FLUSH_LOGD(...) ALOGD(__VA_ARGS__)
Romain Guybdf76092011-07-18 15:00:43 -070041#else
42 #define FLUSH_LOGD(...)
43#endif
44
45///////////////////////////////////////////////////////////////////////////////
Chet Haasedd78cca2010-10-22 18:59:26 -070046// Constructors/destructor
47///////////////////////////////////////////////////////////////////////////////
48
Chris Craik96a5c4c2015-01-27 15:46:35 -080049Caches::Caches(RenderState& renderState)
Chris Craik117bdbc2015-02-05 10:12:38 -080050 : gradientCache(mExtensions)
51 , patchCache(renderState)
52 , programCache(mExtensions)
Chris Craik44eb2c02015-01-29 09:45:09 -080053 , dither(*this)
Chris Craik96a5c4c2015-01-27 15:46:35 -080054 , mRenderState(&renderState)
Chris Craik96a5c4c2015-01-27 15:46:35 -080055 , mInitialized(false) {
56 INIT_LOGD("Creating OpenGL renderer caches");
Romain Guy8ff6b9e2011-11-09 20:10:18 -080057 init();
Romain Guyb1d0a4e2012-07-13 18:25:35 -070058 initFont();
Romain Guydfa10462012-05-12 16:18:58 -070059 initConstraints();
Romain Guy4ff0cf42012-08-06 14:51:10 -070060 initProperties();
Romain Guyf9f00162013-05-09 11:50:12 -070061 initStaticProperties();
Romain Guy0f667532013-03-01 14:31:04 -080062 initExtensions();
Chris Craikba9b6132013-12-15 17:10:19 -080063 initTempProperties();
Romain Guye190aa62010-11-10 19:01:29 -080064
65 mDebugLevel = readDebugLevel();
Chris Craik96a5c4c2015-01-27 15:46:35 -080066 ALOGD_IF(mDebugLevel != kDebugDisabled,
67 "Enabling debug mode %d", mDebugLevel);
Chet Haasedd78cca2010-10-22 18:59:26 -070068}
69
Romain Guy3b748a42013-04-17 18:54:38 -070070bool Caches::init() {
71 if (mInitialized) return false;
Romain Guy8ff6b9e2011-11-09 20:10:18 -080072
John Reckfbc8df02014-11-14 16:18:41 -080073 ATRACE_NAME("Caches::init");
74
Chris Craikd41c4d82015-01-05 15:51:13 -080075 mRegionMesh = nullptr;
Chris Craik6c15ffa2015-02-02 13:50:55 -080076 mProgram = nullptr;
Romain Guy8ff6b9e2011-11-09 20:10:18 -080077
Romain Guy54c1a642012-09-27 17:55:46 -070078 mFunctorsCount = 0;
79
Romain Guyc2a97212013-02-06 15:29:46 -080080 debugLayersUpdates = false;
81 debugOverdraw = false;
Romain Guy3ff0bfd2013-02-25 14:15:37 -080082 debugStencilClip = kStencilHide;
Romain Guyc2a97212013-02-06 15:29:46 -080083
Chris Craik96a5c4c2015-01-27 15:46:35 -080084 patchCache.init();
Romain Guy3b748a42013-04-17 18:54:38 -070085
Romain Guy8ff6b9e2011-11-09 20:10:18 -080086 mInitialized = true;
Romain Guy3b748a42013-04-17 18:54:38 -070087
Chris Craik44eb2c02015-01-29 09:45:09 -080088 mPixelBufferState = new PixelBufferState();
89 mTextureState = new TextureState();
Romain Guy8aa195d2013-06-04 18:00:09 -070090
Romain Guy3b748a42013-04-17 18:54:38 -070091 return true;
Romain Guy8ff6b9e2011-11-09 20:10:18 -080092}
93
Romain Guyb1d0a4e2012-07-13 18:25:35 -070094void Caches::initFont() {
95 fontRenderer = GammaFontRenderer::createRenderer();
96}
97
Romain Guydfa10462012-05-12 16:18:58 -070098void Caches::initExtensions() {
Romain Guy3bbacf22013-02-06 16:51:04 -080099 if (mExtensions.hasDebugMarker()) {
Romain Guydfa10462012-05-12 16:18:58 -0700100 eventMark = glInsertEventMarkerEXT;
Romain Guy0f667532013-03-01 14:31:04 -0800101
Chris Craikff785832013-03-08 13:12:16 -0800102 startMark = glPushGroupMarkerEXT;
103 endMark = glPopGroupMarkerEXT;
Romain Guydfa10462012-05-12 16:18:58 -0700104 } else {
105 eventMark = eventMarkNull;
106 startMark = startMarkNull;
107 endMark = endMarkNull;
108 }
Romain Guydfa10462012-05-12 16:18:58 -0700109}
110
111void Caches::initConstraints() {
Romain Guydfa10462012-05-12 16:18:58 -0700112 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize);
113}
114
Romain Guyf9f00162013-05-09 11:50:12 -0700115void Caches::initStaticProperties() {
116 gpuPixelBuffersEnabled = false;
117
118 // OpenGL ES 3.0+ specific features
Romain Guy7f430762013-06-13 14:29:40 -0700119 if (mExtensions.hasPixelBufferObjects()) {
Romain Guyf9f00162013-05-09 11:50:12 -0700120 char property[PROPERTY_VALUE_MAX];
121 if (property_get(PROPERTY_ENABLE_GPU_PIXEL_BUFFERS, property, "true") > 0) {
122 gpuPixelBuffersEnabled = !strcmp(property, "true");
123 }
124 }
125}
126
Romain Guy5bb3c732012-11-29 17:52:58 -0800127bool Caches::initProperties() {
128 bool prevDebugLayersUpdates = debugLayersUpdates;
129 bool prevDebugOverdraw = debugOverdraw;
Romain Guy3ff0bfd2013-02-25 14:15:37 -0800130 StencilClipDebug prevDebugStencilClip = debugStencilClip;
Romain Guy5bb3c732012-11-29 17:52:58 -0800131
Romain Guy4ff0cf42012-08-06 14:51:10 -0700132 char property[PROPERTY_VALUE_MAX];
Chris Craikd41c4d82015-01-05 15:51:13 -0800133 if (property_get(PROPERTY_DEBUG_LAYERS_UPDATES, property, nullptr) > 0) {
Romain Guy4ff0cf42012-08-06 14:51:10 -0700134 INIT_LOGD(" Layers updates debug enabled: %s", property);
135 debugLayersUpdates = !strcmp(property, "true");
136 } else {
137 debugLayersUpdates = false;
138 }
Romain Guy7c450aa2012-09-21 19:15:00 -0700139
Romain Guy627c6fd2013-08-21 11:53:18 -0700140 debugOverdraw = false;
Chris Craikd41c4d82015-01-05 15:51:13 -0800141 if (property_get(PROPERTY_DEBUG_OVERDRAW, property, nullptr) > 0) {
Romain Guy7c450aa2012-09-21 19:15:00 -0700142 INIT_LOGD(" Overdraw debug enabled: %s", property);
Romain Guy627c6fd2013-08-21 11:53:18 -0700143 if (!strcmp(property, "show")) {
144 debugOverdraw = true;
145 mOverdrawDebugColorSet = kColorSet_Default;
146 } else if (!strcmp(property, "show_deuteranomaly")) {
147 debugOverdraw = true;
148 mOverdrawDebugColorSet = kColorSet_Deuteranomaly;
149 }
Romain Guy7c450aa2012-09-21 19:15:00 -0700150 }
Romain Guy5bb3c732012-11-29 17:52:58 -0800151
Romain Guy3ff0bfd2013-02-25 14:15:37 -0800152 // See Properties.h for valid values
Chris Craikd41c4d82015-01-05 15:51:13 -0800153 if (property_get(PROPERTY_DEBUG_STENCIL_CLIP, property, nullptr) > 0) {
Romain Guy3ff0bfd2013-02-25 14:15:37 -0800154 INIT_LOGD(" Stencil clip debug enabled: %s", property);
155 if (!strcmp(property, "hide")) {
156 debugStencilClip = kStencilHide;
157 } else if (!strcmp(property, "highlight")) {
158 debugStencilClip = kStencilShowHighlight;
159 } else if (!strcmp(property, "region")) {
160 debugStencilClip = kStencilShowRegion;
161 }
162 } else {
163 debugStencilClip = kStencilHide;
164 }
165
Romain Guy0f667532013-03-01 14:31:04 -0800166 if (property_get(PROPERTY_DISABLE_DRAW_DEFER, property, "false")) {
167 drawDeferDisabled = !strcasecmp(property, "true");
168 INIT_LOGD(" Draw defer %s", drawDeferDisabled ? "disabled" : "enabled");
169 } else {
Chris Craik58ddced2014-07-16 19:11:46 -0700170 drawDeferDisabled = false;
Romain Guy0f667532013-03-01 14:31:04 -0800171 INIT_LOGD(" Draw defer enabled");
172 }
173
174 if (property_get(PROPERTY_DISABLE_DRAW_REORDER, property, "false")) {
175 drawReorderDisabled = !strcasecmp(property, "true");
176 INIT_LOGD(" Draw reorder %s", drawReorderDisabled ? "disabled" : "enabled");
177 } else {
Chris Craik58ddced2014-07-16 19:11:46 -0700178 drawReorderDisabled = false;
Romain Guy0f667532013-03-01 14:31:04 -0800179 INIT_LOGD(" Draw reorder enabled");
180 }
181
Chris Craik117bdbc2015-02-05 10:12:38 -0800182 return (prevDebugLayersUpdates != debugLayersUpdates)
183 || (prevDebugOverdraw != debugOverdraw)
184 || (prevDebugStencilClip != debugStencilClip);
Romain Guy4ff0cf42012-08-06 14:51:10 -0700185}
186
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800187void Caches::terminate() {
188 if (!mInitialized) return;
Chris Craik51d6a3d2014-12-22 17:16:56 -0800189 mRegionMesh.release();
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800190
191 fboCache.clear();
192
193 programCache.clear();
Chris Craik34725682015-02-05 09:06:30 -0800194 mProgram = nullptr;
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800195
Romain Guy3b748a42013-04-17 18:54:38 -0700196 patchCache.clear();
197
Romain Guy46bfc482013-08-16 18:38:29 -0700198 clearGarbage();
199
Chris Craik44eb2c02015-01-29 09:45:09 -0800200 delete mPixelBufferState;
201 mPixelBufferState = nullptr;
202 delete mTextureState;
203 mTextureState = nullptr;
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800204 mInitialized = false;
Romain Guy5b3b3522010-10-27 18:57:51 -0700205}
206
Chris Craik6c15ffa2015-02-02 13:50:55 -0800207void Caches::setProgram(const ProgramDescription& description) {
208 setProgram(programCache.get(description));
209}
210
211void Caches::setProgram(Program* program) {
212 if (!program || !program->isInUse()) {
213 if (mProgram) {
214 mProgram->remove();
215 }
216 if (program) {
217 program->use();
218 }
219 mProgram = program;
220 }
221}
222
Romain Guy5b3b3522010-10-27 18:57:51 -0700223///////////////////////////////////////////////////////////////////////////////
Romain Guyc15008e2010-11-10 11:59:15 -0800224// Debug
225///////////////////////////////////////////////////////////////////////////////
226
Romain Guy627c6fd2013-08-21 11:53:18 -0700227uint32_t Caches::getOverdrawColor(uint32_t amount) const {
228 static uint32_t sOverdrawColors[2][4] = {
229 { 0x2f0000ff, 0x2f00ff00, 0x3fff0000, 0x7fff0000 },
230 { 0x2f0000ff, 0x4fffff00, 0x5fff8ad8, 0x7fff0000 }
231 };
232 if (amount < 1) amount = 1;
233 if (amount > 4) amount = 4;
234 return sOverdrawColors[mOverdrawDebugColorSet][amount - 1];
235}
236
Romain Guyc15008e2010-11-10 11:59:15 -0800237void Caches::dumpMemoryUsage() {
Chet Haase9c1e23b2011-03-24 10:51:31 -0700238 String8 stringLog;
239 dumpMemoryUsage(stringLog);
Steve Block5baa3a62011-12-20 16:23:08 +0000240 ALOGD("%s", stringLog.string());
Chet Haase9c1e23b2011-03-24 10:51:31 -0700241}
242
243void Caches::dumpMemoryUsage(String8 &log) {
John Reck0e89e2b2014-10-31 14:49:06 -0700244 uint32_t total = 0;
Chet Haase9c1e23b2011-03-24 10:51:31 -0700245 log.appendFormat("Current memory usage / total memory usage (bytes):\n");
246 log.appendFormat(" TextureCache %8d / %8d\n",
247 textureCache.getSize(), textureCache.getMaxSize());
John Reck17035b02014-09-03 07:39:53 -0700248 log.appendFormat(" LayerCache %8d / %8d (numLayers = %zu)\n",
249 layerCache.getSize(), layerCache.getMaxSize(), layerCache.getCount());
John Reck0e89e2b2014-10-31 14:49:06 -0700250 if (mRenderState) {
251 int memused = 0;
John Reck57998012015-01-29 10:17:57 -0800252 for (std::set<Layer*>::iterator it = mRenderState->mActiveLayers.begin();
John Reck0e89e2b2014-10-31 14:49:06 -0700253 it != mRenderState->mActiveLayers.end(); it++) {
254 const Layer* layer = *it;
255 log.appendFormat(" Layer size %dx%d; isTextureLayer()=%d; texid=%u fbo=%u; refs=%d\n",
256 layer->getWidth(), layer->getHeight(),
Chris Craikf27133d2015-02-19 09:51:53 -0800257 layer->isTextureLayer(), layer->getTextureId(),
John Reck0e89e2b2014-10-31 14:49:06 -0700258 layer->getFbo(), layer->getStrongCount());
John Reck88f5fc72014-11-03 10:32:24 -0800259 memused += layer->getWidth() * layer->getHeight() * 4;
John Reck0e89e2b2014-10-31 14:49:06 -0700260 }
261 log.appendFormat(" Layers total %8d (numLayers = %zu)\n",
262 memused, mRenderState->mActiveLayers.size());
263 total += memused;
264 }
Romain Guy8d4aeb72013-02-12 16:08:55 -0800265 log.appendFormat(" RenderBufferCache %8d / %8d\n",
266 renderBufferCache.getSize(), renderBufferCache.getMaxSize());
Chet Haase9c1e23b2011-03-24 10:51:31 -0700267 log.appendFormat(" GradientCache %8d / %8d\n",
268 gradientCache.getSize(), gradientCache.getMaxSize());
269 log.appendFormat(" PathCache %8d / %8d\n",
270 pathCache.getSize(), pathCache.getMaxSize());
Chris Craik05f3d6e2014-06-02 16:27:04 -0700271 log.appendFormat(" TessellationCache %8d / %8d\n",
272 tessellationCache.getSize(), tessellationCache.getMaxSize());
Chet Haase9c1e23b2011-03-24 10:51:31 -0700273 log.appendFormat(" TextDropShadowCache %8d / %8d\n", dropShadowCache.getSize(),
Romain Guyc15008e2010-11-10 11:59:15 -0800274 dropShadowCache.getMaxSize());
Romain Guy3b748a42013-04-17 18:54:38 -0700275 log.appendFormat(" PatchCache %8d / %8d\n",
276 patchCache.getSize(), patchCache.getMaxSize());
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700277 for (uint32_t i = 0; i < fontRenderer->getFontRendererCount(); i++) {
Victoria Lease1e546812013-06-25 14:25:17 -0700278 const uint32_t sizeA8 = fontRenderer->getFontRendererSize(i, GL_ALPHA);
279 const uint32_t sizeRGBA = fontRenderer->getFontRendererSize(i, GL_RGBA);
280 log.appendFormat(" FontRenderer %d A8 %8d / %8d\n", i, sizeA8, sizeA8);
281 log.appendFormat(" FontRenderer %d RGBA %8d / %8d\n", i, sizeRGBA, sizeRGBA);
282 log.appendFormat(" FontRenderer %d total %8d / %8d\n", i, sizeA8 + sizeRGBA,
283 sizeA8 + sizeRGBA);
Romain Guyc15008e2010-11-10 11:59:15 -0800284 }
Romain Guyd2ba50a2011-05-27 10:21:07 -0700285 log.appendFormat("Other:\n");
Chet Haase9c1e23b2011-03-24 10:51:31 -0700286 log.appendFormat(" FboCache %8d / %8d\n",
287 fboCache.getSize(), fboCache.getMaxSize());
Romain Guyc15008e2010-11-10 11:59:15 -0800288
Romain Guyc15008e2010-11-10 11:59:15 -0800289 total += textureCache.getSize();
Romain Guy8d4aeb72013-02-12 16:08:55 -0800290 total += renderBufferCache.getSize();
Romain Guyc15008e2010-11-10 11:59:15 -0800291 total += gradientCache.getSize();
292 total += pathCache.getSize();
Chris Craik05f3d6e2014-06-02 16:27:04 -0700293 total += tessellationCache.getSize();
Romain Guyc15008e2010-11-10 11:59:15 -0800294 total += dropShadowCache.getSize();
Romain Guy3b748a42013-04-17 18:54:38 -0700295 total += patchCache.getSize();
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700296 for (uint32_t i = 0; i < fontRenderer->getFontRendererCount(); i++) {
Victoria Lease1e546812013-06-25 14:25:17 -0700297 total += fontRenderer->getFontRendererSize(i, GL_ALPHA);
298 total += fontRenderer->getFontRendererSize(i, GL_RGBA);
Romain Guyc15008e2010-11-10 11:59:15 -0800299 }
300
Chet Haase9c1e23b2011-03-24 10:51:31 -0700301 log.appendFormat("Total memory usage:\n");
302 log.appendFormat(" %d bytes, %.2f MB\n", total, total / 1024.0f / 1024.0f);
Romain Guyc15008e2010-11-10 11:59:15 -0800303}
304
305///////////////////////////////////////////////////////////////////////////////
Romain Guyfe48f652010-11-11 15:36:56 -0800306// Memory management
307///////////////////////////////////////////////////////////////////////////////
308
309void Caches::clearGarbage() {
310 textureCache.clearGarbage();
Romain Guyfe48f652010-11-11 15:36:56 -0800311 pathCache.clearGarbage();
Romain Guye3b0a012013-06-26 15:45:41 -0700312 patchCache.clearGarbage();
Romain Guyfe48f652010-11-11 15:36:56 -0800313}
314
Romain Guybdf76092011-07-18 15:00:43 -0700315void Caches::flush(FlushMode mode) {
316 FLUSH_LOGD("Flushing caches (mode %d)", mode);
317
Romain Guyb0a41ed2013-08-16 14:44:38 -0700318 // We must stop tasks before clearing caches
319 if (mode > kFlushMode_Layers) {
320 tasks.stop();
321 }
322
Romain Guybdf76092011-07-18 15:00:43 -0700323 switch (mode) {
324 case kFlushMode_Full:
325 textureCache.clear();
326 patchCache.clear();
327 dropShadowCache.clear();
328 gradientCache.clear();
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700329 fontRenderer->clear();
Romain Guyb7463712013-08-16 13:55:29 -0700330 fboCache.clear();
Romain Guy211efea2012-07-31 21:16:07 -0700331 dither.clear();
Romain Guybdf76092011-07-18 15:00:43 -0700332 // fall through
333 case kFlushMode_Moderate:
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700334 fontRenderer->flush();
Romain Guyeca0ca22011-11-04 15:12:29 -0700335 textureCache.flush();
Romain Guybdf76092011-07-18 15:00:43 -0700336 pathCache.clear();
Chris Craik05f3d6e2014-06-02 16:27:04 -0700337 tessellationCache.clear();
Romain Guy6d7475d2011-07-27 16:28:21 -0700338 // fall through
339 case kFlushMode_Layers:
340 layerCache.clear();
Romain Guy8d4aeb72013-02-12 16:08:55 -0800341 renderBufferCache.clear();
Romain Guybdf76092011-07-18 15:00:43 -0700342 break;
343 }
Chet Haase6a2d17f2012-09-30 12:14:13 -0700344
345 clearGarbage();
John Reck4ced2622014-09-19 10:10:19 -0700346 glFinish();
Romain Guybdf76092011-07-18 15:00:43 -0700347}
348
Romain Guyfe48f652010-11-11 15:36:56 -0800349///////////////////////////////////////////////////////////////////////////////
Romain Guy85ef80d2012-09-13 20:26:50 -0700350// Tiling
351///////////////////////////////////////////////////////////////////////////////
352
Romain Guyf735c8e2013-01-31 17:45:55 -0800353void Caches::startTiling(GLuint x, GLuint y, GLuint width, GLuint height, bool discard) {
Romain Guy3bbacf22013-02-06 16:51:04 -0800354 if (mExtensions.hasTiledRendering() && !debugOverdraw) {
Romain Guyf735c8e2013-01-31 17:45:55 -0800355 glStartTilingQCOM(x, y, width, height, (discard ? GL_NONE : GL_COLOR_BUFFER_BIT0_QCOM));
Romain Guy85ef80d2012-09-13 20:26:50 -0700356 }
357}
358
359void Caches::endTiling() {
Romain Guy3bbacf22013-02-06 16:51:04 -0800360 if (mExtensions.hasTiledRendering() && !debugOverdraw) {
Romain Guy2b7028e2012-09-19 17:25:38 -0700361 glEndTilingQCOM(GL_COLOR_BUFFER_BIT0_QCOM);
Romain Guy85ef80d2012-09-13 20:26:50 -0700362 }
363}
364
Romain Guy54c1a642012-09-27 17:55:46 -0700365bool Caches::hasRegisteredFunctors() {
366 return mFunctorsCount > 0;
367}
368
369void Caches::registerFunctors(uint32_t functorCount) {
370 mFunctorsCount += functorCount;
371}
372
373void Caches::unregisterFunctors(uint32_t functorCount) {
374 if (functorCount > mFunctorsCount) {
375 mFunctorsCount = 0;
376 } else {
377 mFunctorsCount -= functorCount;
378 }
379}
380
Romain Guy85ef80d2012-09-13 20:26:50 -0700381///////////////////////////////////////////////////////////////////////////////
382// Regions
383///////////////////////////////////////////////////////////////////////////////
384
Romain Guy5b3b3522010-10-27 18:57:51 -0700385TextureVertex* Caches::getRegionMesh() {
386 // Create the mesh, 2 triangles and 4 vertices per rectangle in the region
387 if (!mRegionMesh) {
Chris Craik96a5c4c2015-01-27 15:46:35 -0800388 mRegionMesh.reset(new TextureVertex[kMaxNumberOfQuads * 4]);
Romain Guy5b3b3522010-10-27 18:57:51 -0700389 }
390
Chris Craik51d6a3d2014-12-22 17:16:56 -0800391 return mRegionMesh.get();
Romain Guy5b3b3522010-10-27 18:57:51 -0700392}
393
Chris Craikba9b6132013-12-15 17:10:19 -0800394///////////////////////////////////////////////////////////////////////////////
395// Temporary Properties
396///////////////////////////////////////////////////////////////////////////////
397
398void Caches::initTempProperties() {
ztenghui62aa44c2015-02-20 10:53:22 -0800399 propertyLightRadius = -1.0f;
Chris Craikf5be3ca2014-04-30 18:20:03 -0700400 propertyLightPosY = -1.0f;
401 propertyLightPosZ = -1.0f;
402 propertyAmbientRatio = -1.0f;
ztenghui14a4e352014-08-13 10:44:39 -0700403 propertyAmbientShadowStrength = -1;
404 propertySpotShadowStrength = -1;
Chris Craikba9b6132013-12-15 17:10:19 -0800405}
406
407void Caches::setTempProperty(const char* name, const char* value) {
408 ALOGD("setting property %s to %s", name, value);
Chris Craika736cd92014-08-04 13:18:38 -0700409 if (!strcmp(name, "ambientRatio")) {
Chris Craikf5be3ca2014-04-30 18:20:03 -0700410 propertyAmbientRatio = fmin(fmax(atof(value), 0.0), 10.0);
411 ALOGD("ambientRatio = %.2f", propertyAmbientRatio);
ztenghuicc3c2562014-01-17 10:34:10 -0800412 return;
ztenghui62aa44c2015-02-20 10:53:22 -0800413 } else if (!strcmp(name, "lightRadius")) {
414 propertyLightRadius = fmin(fmax(atof(value), 0.0), 3000.0);
415 ALOGD("lightRadius = %.2f", propertyLightRadius);
ztenghuicc3c2562014-01-17 10:34:10 -0800416 return;
Chris Craik59744b72014-07-01 17:56:52 -0700417 } else if (!strcmp(name, "lightPosY")) {
Chris Craikf5be3ca2014-04-30 18:20:03 -0700418 propertyLightPosY = fmin(fmax(atof(value), 0.0), 3000.0);
419 ALOGD("lightPos Y = %.2f", propertyLightPosY);
420 return;
Chris Craik59744b72014-07-01 17:56:52 -0700421 } else if (!strcmp(name, "lightPosZ")) {
Chris Craikf5be3ca2014-04-30 18:20:03 -0700422 propertyLightPosZ = fmin(fmax(atof(value), 0.0), 3000.0);
423 ALOGD("lightPos Z = %.2f", propertyLightPosZ);
ztenghuicc3c2562014-01-17 10:34:10 -0800424 return;
ztenghui14a4e352014-08-13 10:44:39 -0700425 } else if (!strcmp(name, "ambientShadowStrength")) {
426 propertyAmbientShadowStrength = atoi(value);
427 ALOGD("ambient shadow strength = 0x%x out of 0xff", propertyAmbientShadowStrength);
428 return;
429 } else if (!strcmp(name, "spotShadowStrength")) {
430 propertySpotShadowStrength = atoi(value);
431 ALOGD("spot shadow strength = 0x%x out of 0xff", propertySpotShadowStrength);
432 return;
Chris Craikba9b6132013-12-15 17:10:19 -0800433 }
434 ALOGD(" failed");
435}
436
Chet Haasedd78cca2010-10-22 18:59:26 -0700437}; // namespace uirenderer
438}; // namespace android