blob: b5872485b13695637a05e65f978f91e0e07b4361 [file] [log] [blame]
Chris Craik2507c342015-05-04 14:36:49 -07001/*
2 * Copyright (C) 2015 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 */
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070016
Chris Craik2507c342015-05-04 14:36:49 -070017#include "Properties.h"
Chris Craik2507c342015-05-04 14:36:49 -070018#include "Debug.h"
19
John Reck6b507802015-11-03 10:09:59 -080020#include <algorithm>
21#include <cstdlib>
Chris Craik2507c342015-05-04 14:36:49 -070022
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070023#include <cutils/compiler.h>
24#include <cutils/properties.h>
Mark Salyzyn96bf5982016-09-28 16:15:30 -070025#include <log/log.h>
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070026
Chris Craik2507c342015-05-04 14:36:49 -070027namespace android {
28namespace uirenderer {
29
30bool Properties::drawDeferDisabled = false;
31bool Properties::drawReorderDisabled = false;
32bool Properties::debugLayersUpdates = false;
33bool Properties::debugOverdraw = false;
34bool Properties::showDirtyRegions = false;
John Reckd04794a2015-05-08 10:04:36 -070035bool Properties::skipEmptyFrames = true;
John Reck149173d2015-08-10 09:52:29 -070036bool Properties::useBufferAge = true;
37bool Properties::enablePartialUpdates = true;
Chris Craik2507c342015-05-04 14:36:49 -070038
Chris Craikc08820f2015-09-22 14:22:29 -070039float Properties::textGamma = DEFAULT_TEXT_GAMMA;
Chris Craik48a8f432016-02-05 15:59:29 -080040
41int Properties::fboCacheSize = DEFAULT_FBO_CACHE_SIZE;
42int Properties::gradientCacheSize = MB(DEFAULT_GRADIENT_CACHE_SIZE);
43int Properties::layerPoolSize = MB(DEFAULT_LAYER_CACHE_SIZE);
44int Properties::patchCacheSize = KB(DEFAULT_PATCH_CACHE_SIZE);
45int Properties::pathCacheSize = MB(DEFAULT_PATH_CACHE_SIZE);
46int Properties::renderBufferCacheSize = MB(DEFAULT_RENDER_BUFFER_CACHE_SIZE);
47int Properties::tessellationCacheSize = MB(DEFAULT_VERTEX_CACHE_SIZE);
48int Properties::textDropShadowCacheSize = MB(DEFAULT_DROP_SHADOW_CACHE_SIZE);
49int Properties::textureCacheSize = MB(DEFAULT_TEXTURE_CACHE_SIZE);
50
51float Properties::textureCacheFlushRate = DEFAULT_TEXTURE_CACHE_FLUSH_RATE;
Chris Craikc08820f2015-09-22 14:22:29 -070052
Chris Craik2507c342015-05-04 14:36:49 -070053DebugLevel Properties::debugLevel = kDebugDisabled;
54OverdrawColorSet Properties::overdrawColorSet = OverdrawColorSet::Default;
55StencilClipDebug Properties::debugStencilClip = StencilClipDebug::Hide;
56
57float Properties::overrideLightRadius = -1.0f;
58float Properties::overrideLightPosY = -1.0f;
59float Properties::overrideLightPosZ = -1.0f;
60float Properties::overrideAmbientRatio = -1.0f;
61int Properties::overrideAmbientShadowStrength = -1;
62int Properties::overrideSpotShadowStrength = -1;
63
64ProfileType Properties::sProfileType = ProfileType::None;
65bool Properties::sDisableProfileBars = false;
Stan Iliev03de0742016-07-07 12:35:54 -040066RenderPipelineType Properties::sRenderPipelineType = RenderPipelineType::NotInitialized;
Chris Craik2507c342015-05-04 14:36:49 -070067
John Reck682573c2015-10-30 10:37:35 -070068bool Properties::waitForGpuCompletion = false;
John Reckf1480762016-07-03 18:28:25 -070069bool Properties::forceDrawFrame = false;
John Reck682573c2015-10-30 10:37:35 -070070
John Reckc7cd9cf2016-03-28 10:38:19 -070071bool Properties::filterOutTestOverhead = false;
John Recka8963062017-06-14 10:47:50 -070072bool Properties::disableVsync = false;
John Reckc7cd9cf2016-03-28 10:38:19 -070073
Chris Craik9fded232015-11-11 16:42:34 -080074static int property_get_int(const char* key, int defaultValue) {
75 char buf[PROPERTY_VALUE_MAX] = {'\0',};
76
77 if (property_get(key, buf, "") > 0) {
78 return atoi(buf);
79 }
80 return defaultValue;
81}
82
Chris Craikc08820f2015-09-22 14:22:29 -070083static float property_get_float(const char* key, float defaultValue) {
84 char buf[PROPERTY_VALUE_MAX] = {'\0',};
85
Chris Craik9fded232015-11-11 16:42:34 -080086 if (property_get(key, buf, "") > 0) {
Chris Craikc08820f2015-09-22 14:22:29 -070087 return atof(buf);
88 }
89 return defaultValue;
90}
91
Chris Craik2507c342015-05-04 14:36:49 -070092bool Properties::load() {
93 char property[PROPERTY_VALUE_MAX];
94 bool prevDebugLayersUpdates = debugLayersUpdates;
95 bool prevDebugOverdraw = debugOverdraw;
96 StencilClipDebug prevDebugStencilClip = debugStencilClip;
97
Chris Craik2507c342015-05-04 14:36:49 -070098 debugOverdraw = false;
99 if (property_get(PROPERTY_DEBUG_OVERDRAW, property, nullptr) > 0) {
100 INIT_LOGD(" Overdraw debug enabled: %s", property);
101 if (!strcmp(property, "show")) {
102 debugOverdraw = true;
103 overdrawColorSet = OverdrawColorSet::Default;
104 } else if (!strcmp(property, "show_deuteranomaly")) {
105 debugOverdraw = true;
106 overdrawColorSet = OverdrawColorSet::Deuteranomaly;
107 }
108 }
109
110 // See Properties.h for valid values
111 if (property_get(PROPERTY_DEBUG_STENCIL_CLIP, property, nullptr) > 0) {
112 INIT_LOGD(" Stencil clip debug enabled: %s", property);
113 if (!strcmp(property, "hide")) {
114 debugStencilClip = StencilClipDebug::Hide;
115 } else if (!strcmp(property, "highlight")) {
116 debugStencilClip = StencilClipDebug::ShowHighlight;
117 } else if (!strcmp(property, "region")) {
118 debugStencilClip = StencilClipDebug::ShowRegion;
119 }
120 } else {
121 debugStencilClip = StencilClipDebug::Hide;
122 }
123
124 sProfileType = ProfileType::None;
125 if (property_get(PROPERTY_PROFILE, property, "") > 0) {
126 if (!strcmp(property, PROPERTY_PROFILE_VISUALIZE_BARS)) {
127 sProfileType = ProfileType::Bars;
128 } else if (!strcmp(property, "true")) {
129 sProfileType = ProfileType::Console;
130 }
131 }
132
133 debugLayersUpdates = property_get_bool(PROPERTY_DEBUG_LAYERS_UPDATES, false);
134 INIT_LOGD(" Layers updates debug enabled: %d", debugLayersUpdates);
135
136 drawDeferDisabled = property_get_bool(PROPERTY_DISABLE_DRAW_DEFER, false);
137 INIT_LOGD(" Draw defer %s", drawDeferDisabled ? "disabled" : "enabled");
138
139 drawReorderDisabled = property_get_bool(PROPERTY_DISABLE_DRAW_REORDER, false);
140 INIT_LOGD(" Draw reorder %s", drawReorderDisabled ? "disabled" : "enabled");
141
142 showDirtyRegions = property_get_bool(PROPERTY_DEBUG_SHOW_DIRTY_REGIONS, false);
143
Chris Craik9fded232015-11-11 16:42:34 -0800144 debugLevel = (DebugLevel) property_get_int(PROPERTY_DEBUG, kDebugDisabled);
Chris Craik2507c342015-05-04 14:36:49 -0700145
John Reckd04794a2015-05-08 10:04:36 -0700146 skipEmptyFrames = property_get_bool(PROPERTY_SKIP_EMPTY_DAMAGE, true);
John Reck149173d2015-08-10 09:52:29 -0700147 useBufferAge = property_get_bool(PROPERTY_USE_BUFFER_AGE, true);
148 enablePartialUpdates = property_get_bool(PROPERTY_ENABLE_PARTIAL_UPDATES, true);
John Reckd04794a2015-05-08 10:04:36 -0700149
Chris Craikc08820f2015-09-22 14:22:29 -0700150 textGamma = property_get_float(PROPERTY_TEXT_GAMMA, DEFAULT_TEXT_GAMMA);
Chris Craik48a8f432016-02-05 15:59:29 -0800151
152 fboCacheSize = property_get_int(PROPERTY_FBO_CACHE_SIZE, DEFAULT_FBO_CACHE_SIZE);
153 gradientCacheSize = MB(property_get_float(PROPERTY_GRADIENT_CACHE_SIZE, DEFAULT_GRADIENT_CACHE_SIZE));
Chris Craik9fded232015-11-11 16:42:34 -0800154 layerPoolSize = MB(property_get_float(PROPERTY_LAYER_CACHE_SIZE, DEFAULT_LAYER_CACHE_SIZE));
Chris Craik48a8f432016-02-05 15:59:29 -0800155 patchCacheSize = KB(property_get_float(PROPERTY_PATCH_CACHE_SIZE, DEFAULT_PATCH_CACHE_SIZE));
156 pathCacheSize = MB(property_get_float(PROPERTY_PATH_CACHE_SIZE, DEFAULT_PATH_CACHE_SIZE));
157 renderBufferCacheSize = MB(property_get_float(PROPERTY_RENDER_BUFFER_CACHE_SIZE, DEFAULT_RENDER_BUFFER_CACHE_SIZE));
158 tessellationCacheSize = MB(property_get_float(PROPERTY_VERTEX_CACHE_SIZE, DEFAULT_VERTEX_CACHE_SIZE));
159 textDropShadowCacheSize = MB(property_get_float(PROPERTY_DROP_SHADOW_CACHE_SIZE, DEFAULT_DROP_SHADOW_CACHE_SIZE));
160 textureCacheSize = MB(property_get_float(PROPERTY_TEXTURE_CACHE_SIZE, DEFAULT_TEXTURE_CACHE_SIZE));
161 textureCacheFlushRate = std::max(0.0f, std::min(1.0f,
162 property_get_float(PROPERTY_TEXTURE_CACHE_FLUSH_RATE, DEFAULT_TEXTURE_CACHE_FLUSH_RATE)));
Chris Craikc08820f2015-09-22 14:22:29 -0700163
John Reckc7cd9cf2016-03-28 10:38:19 -0700164 filterOutTestOverhead = property_get_bool(PROPERTY_FILTER_TEST_OVERHEAD, false);
165
Chris Craik2507c342015-05-04 14:36:49 -0700166 return (prevDebugLayersUpdates != debugLayersUpdates)
167 || (prevDebugOverdraw != debugOverdraw)
168 || (prevDebugStencilClip != debugStencilClip);
169}
170
171void Properties::overrideProperty(const char* name, const char* value) {
172 if (!strcmp(name, "disableProfileBars")) {
173 sDisableProfileBars = !strcmp(value, "true");
174 ALOGD("profile bars %s", sDisableProfileBars ? "disabled" : "enabled");
175 return;
176 } else if (!strcmp(name, "ambientRatio")) {
Chris Craike6a15ee2015-07-07 18:42:17 -0700177 overrideAmbientRatio = std::min(std::max(atof(value), 0.0), 10.0);
Chris Craik2507c342015-05-04 14:36:49 -0700178 ALOGD("ambientRatio = %.2f", overrideAmbientRatio);
179 return;
180 } else if (!strcmp(name, "lightRadius")) {
Chris Craike6a15ee2015-07-07 18:42:17 -0700181 overrideLightRadius = std::min(std::max(atof(value), 0.0), 3000.0);
Chris Craik2507c342015-05-04 14:36:49 -0700182 ALOGD("lightRadius = %.2f", overrideLightRadius);
183 return;
184 } else if (!strcmp(name, "lightPosY")) {
Chris Craike6a15ee2015-07-07 18:42:17 -0700185 overrideLightPosY = std::min(std::max(atof(value), 0.0), 3000.0);
Chris Craik2507c342015-05-04 14:36:49 -0700186 ALOGD("lightPos Y = %.2f", overrideLightPosY);
187 return;
188 } else if (!strcmp(name, "lightPosZ")) {
Chris Craike6a15ee2015-07-07 18:42:17 -0700189 overrideLightPosZ = std::min(std::max(atof(value), 0.0), 3000.0);
Chris Craik2507c342015-05-04 14:36:49 -0700190 ALOGD("lightPos Z = %.2f", overrideLightPosZ);
191 return;
192 } else if (!strcmp(name, "ambientShadowStrength")) {
193 overrideAmbientShadowStrength = atoi(value);
194 ALOGD("ambient shadow strength = 0x%x out of 0xff", overrideAmbientShadowStrength);
195 return;
196 } else if (!strcmp(name, "spotShadowStrength")) {
197 overrideSpotShadowStrength = atoi(value);
198 ALOGD("spot shadow strength = 0x%x out of 0xff", overrideSpotShadowStrength);
199 return;
200 }
201 ALOGD("failed overriding property %s to %s", name, value);
202}
203
204ProfileType Properties::getProfileType() {
205 if (CC_UNLIKELY(sDisableProfileBars && sProfileType == ProfileType::Bars))
206 return ProfileType::None;
207 return sProfileType;
208}
209
Stan Iliev03de0742016-07-07 12:35:54 -0400210RenderPipelineType Properties::getRenderPipelineType() {
211 if (RenderPipelineType::NotInitialized != sRenderPipelineType) {
212 return sRenderPipelineType;
213 }
214 char prop[PROPERTY_VALUE_MAX];
Derek Sollenberger4badfe62017-02-14 11:38:06 -0500215 property_get(PROPERTY_RENDERER, prop, "opengl");
Stan Iliev03de0742016-07-07 12:35:54 -0400216 if (!strcmp(prop, "skiagl") ) {
Chris Craik6e66b392017-02-21 12:41:49 -0800217 ALOGD("Skia GL Pipeline");
Stan Iliev03de0742016-07-07 12:35:54 -0400218 sRenderPipelineType = RenderPipelineType::SkiaGL;
Derek Sollenberger0df62092016-09-27 16:04:42 -0400219 } else if (!strcmp(prop, "skiavk") ) {
Chris Craik6e66b392017-02-21 12:41:49 -0800220 ALOGD("Skia Vulkan Pipeline");
Stan Iliev8a33e402016-07-08 09:57:49 -0400221 sRenderPipelineType = RenderPipelineType::SkiaVulkan;
Stan Iliev03de0742016-07-07 12:35:54 -0400222 } else { //"opengl"
Chris Craik6e66b392017-02-21 12:41:49 -0800223 ALOGD("HWUI GL Pipeline");
Stan Iliev03de0742016-07-07 12:35:54 -0400224 sRenderPipelineType = RenderPipelineType::OpenGL;
225 }
226 return sRenderPipelineType;
227}
228
Greg Daniel98c78da2017-01-04 14:45:56 -0500229#ifdef HWUI_GLES_WRAP_ENABLED
230void Properties::overrideRenderPipelineType(RenderPipelineType type) {
231 sRenderPipelineType = type;
232}
233#endif
234
Derek Sollenberger0df62092016-09-27 16:04:42 -0400235bool Properties::isSkiaEnabled() {
236 auto renderType = getRenderPipelineType();
237 return RenderPipelineType::SkiaGL == renderType
238 || RenderPipelineType::SkiaVulkan == renderType;
239}
240
Chris Craik2507c342015-05-04 14:36:49 -0700241}; // namespace uirenderer
242}; // namespace android