Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 1 | /* |
| 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 Salyzyn | 52eb4e0 | 2016-09-28 16:15:30 -0700 | [diff] [blame] | 16 | |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 17 | #include "Properties.h" |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 18 | #include "Debug.h" |
John Reck | 8dc02f9 | 2017-07-17 09:55:02 -0700 | [diff] [blame] | 19 | #include "DeviceInfo.h" |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 20 | |
John Reck | 6b50780 | 2015-11-03 10:09:59 -0800 | [diff] [blame] | 21 | #include <algorithm> |
| 22 | #include <cstdlib> |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 23 | |
Mark Salyzyn | 52eb4e0 | 2016-09-28 16:15:30 -0700 | [diff] [blame] | 24 | #include <cutils/compiler.h> |
| 25 | #include <cutils/properties.h> |
Mark Salyzyn | 96bf598 | 2016-09-28 16:15:30 -0700 | [diff] [blame] | 26 | #include <log/log.h> |
Mark Salyzyn | 52eb4e0 | 2016-09-28 16:15:30 -0700 | [diff] [blame] | 27 | |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 28 | namespace android { |
| 29 | namespace uirenderer { |
| 30 | |
| 31 | bool Properties::drawDeferDisabled = false; |
| 32 | bool Properties::drawReorderDisabled = false; |
| 33 | bool Properties::debugLayersUpdates = false; |
| 34 | bool Properties::debugOverdraw = false; |
| 35 | bool Properties::showDirtyRegions = false; |
John Reck | d04794a | 2015-05-08 10:04:36 -0700 | [diff] [blame] | 36 | bool Properties::skipEmptyFrames = true; |
John Reck | 149173d | 2015-08-10 09:52:29 -0700 | [diff] [blame] | 37 | bool Properties::useBufferAge = true; |
| 38 | bool Properties::enablePartialUpdates = true; |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 39 | |
| 40 | DebugLevel Properties::debugLevel = kDebugDisabled; |
| 41 | OverdrawColorSet Properties::overdrawColorSet = OverdrawColorSet::Default; |
| 42 | StencilClipDebug Properties::debugStencilClip = StencilClipDebug::Hide; |
| 43 | |
| 44 | float Properties::overrideLightRadius = -1.0f; |
| 45 | float Properties::overrideLightPosY = -1.0f; |
| 46 | float Properties::overrideLightPosZ = -1.0f; |
| 47 | float Properties::overrideAmbientRatio = -1.0f; |
| 48 | int Properties::overrideAmbientShadowStrength = -1; |
| 49 | int Properties::overrideSpotShadowStrength = -1; |
| 50 | |
| 51 | ProfileType Properties::sProfileType = ProfileType::None; |
| 52 | bool Properties::sDisableProfileBars = false; |
Stan Iliev | 03de074 | 2016-07-07 12:35:54 -0400 | [diff] [blame] | 53 | RenderPipelineType Properties::sRenderPipelineType = RenderPipelineType::NotInitialized; |
John Reck | 938e884 | 2017-08-24 13:41:59 -0700 | [diff] [blame] | 54 | bool Properties::enableHighContrastText = false; |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 55 | |
John Reck | 682573c | 2015-10-30 10:37:35 -0700 | [diff] [blame] | 56 | bool Properties::waitForGpuCompletion = false; |
John Reck | f148076 | 2016-07-03 18:28:25 -0700 | [diff] [blame] | 57 | bool Properties::forceDrawFrame = false; |
John Reck | 682573c | 2015-10-30 10:37:35 -0700 | [diff] [blame] | 58 | |
John Reck | c7cd9cf | 2016-03-28 10:38:19 -0700 | [diff] [blame] | 59 | bool Properties::filterOutTestOverhead = false; |
John Reck | a896306 | 2017-06-14 10:47:50 -0700 | [diff] [blame] | 60 | bool Properties::disableVsync = false; |
Stan Iliev | e9d0012 | 2017-09-19 12:07:10 -0400 | [diff] [blame] | 61 | bool Properties::skpCaptureEnabled = false; |
John Reck | 9f51644 | 2017-09-25 10:27:21 -0700 | [diff] [blame^] | 62 | bool Properties::enableRTAnimations = true; |
John Reck | c7cd9cf | 2016-03-28 10:38:19 -0700 | [diff] [blame] | 63 | |
Chris Craik | 9fded23 | 2015-11-11 16:42:34 -0800 | [diff] [blame] | 64 | static int property_get_int(const char* key, int defaultValue) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 65 | char buf[PROPERTY_VALUE_MAX] = { |
| 66 | '\0', |
| 67 | }; |
Chris Craik | 9fded23 | 2015-11-11 16:42:34 -0800 | [diff] [blame] | 68 | |
| 69 | if (property_get(key, buf, "") > 0) { |
| 70 | return atoi(buf); |
| 71 | } |
| 72 | return defaultValue; |
| 73 | } |
| 74 | |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 75 | bool Properties::load() { |
| 76 | char property[PROPERTY_VALUE_MAX]; |
| 77 | bool prevDebugLayersUpdates = debugLayersUpdates; |
| 78 | bool prevDebugOverdraw = debugOverdraw; |
| 79 | StencilClipDebug prevDebugStencilClip = debugStencilClip; |
| 80 | |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 81 | debugOverdraw = false; |
| 82 | if (property_get(PROPERTY_DEBUG_OVERDRAW, property, nullptr) > 0) { |
| 83 | INIT_LOGD(" Overdraw debug enabled: %s", property); |
| 84 | if (!strcmp(property, "show")) { |
| 85 | debugOverdraw = true; |
| 86 | overdrawColorSet = OverdrawColorSet::Default; |
| 87 | } else if (!strcmp(property, "show_deuteranomaly")) { |
| 88 | debugOverdraw = true; |
| 89 | overdrawColorSet = OverdrawColorSet::Deuteranomaly; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | // See Properties.h for valid values |
| 94 | if (property_get(PROPERTY_DEBUG_STENCIL_CLIP, property, nullptr) > 0) { |
| 95 | INIT_LOGD(" Stencil clip debug enabled: %s", property); |
| 96 | if (!strcmp(property, "hide")) { |
| 97 | debugStencilClip = StencilClipDebug::Hide; |
| 98 | } else if (!strcmp(property, "highlight")) { |
| 99 | debugStencilClip = StencilClipDebug::ShowHighlight; |
| 100 | } else if (!strcmp(property, "region")) { |
| 101 | debugStencilClip = StencilClipDebug::ShowRegion; |
| 102 | } |
| 103 | } else { |
| 104 | debugStencilClip = StencilClipDebug::Hide; |
| 105 | } |
| 106 | |
| 107 | sProfileType = ProfileType::None; |
| 108 | if (property_get(PROPERTY_PROFILE, property, "") > 0) { |
| 109 | if (!strcmp(property, PROPERTY_PROFILE_VISUALIZE_BARS)) { |
| 110 | sProfileType = ProfileType::Bars; |
| 111 | } else if (!strcmp(property, "true")) { |
| 112 | sProfileType = ProfileType::Console; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | debugLayersUpdates = property_get_bool(PROPERTY_DEBUG_LAYERS_UPDATES, false); |
| 117 | INIT_LOGD(" Layers updates debug enabled: %d", debugLayersUpdates); |
| 118 | |
| 119 | drawDeferDisabled = property_get_bool(PROPERTY_DISABLE_DRAW_DEFER, false); |
| 120 | INIT_LOGD(" Draw defer %s", drawDeferDisabled ? "disabled" : "enabled"); |
| 121 | |
| 122 | drawReorderDisabled = property_get_bool(PROPERTY_DISABLE_DRAW_REORDER, false); |
| 123 | INIT_LOGD(" Draw reorder %s", drawReorderDisabled ? "disabled" : "enabled"); |
| 124 | |
| 125 | showDirtyRegions = property_get_bool(PROPERTY_DEBUG_SHOW_DIRTY_REGIONS, false); |
| 126 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 127 | debugLevel = (DebugLevel)property_get_int(PROPERTY_DEBUG, kDebugDisabled); |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 128 | |
John Reck | d04794a | 2015-05-08 10:04:36 -0700 | [diff] [blame] | 129 | skipEmptyFrames = property_get_bool(PROPERTY_SKIP_EMPTY_DAMAGE, true); |
John Reck | 149173d | 2015-08-10 09:52:29 -0700 | [diff] [blame] | 130 | useBufferAge = property_get_bool(PROPERTY_USE_BUFFER_AGE, true); |
| 131 | enablePartialUpdates = property_get_bool(PROPERTY_ENABLE_PARTIAL_UPDATES, true); |
John Reck | d04794a | 2015-05-08 10:04:36 -0700 | [diff] [blame] | 132 | |
John Reck | c7cd9cf | 2016-03-28 10:38:19 -0700 | [diff] [blame] | 133 | filterOutTestOverhead = property_get_bool(PROPERTY_FILTER_TEST_OVERHEAD, false); |
| 134 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 135 | skpCaptureEnabled = property_get_bool("ro.debuggable", false) && |
| 136 | property_get_bool(PROPERTY_CAPTURE_SKP_ENABLED, false); |
Stan Iliev | e9d0012 | 2017-09-19 12:07:10 -0400 | [diff] [blame] | 137 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 138 | return (prevDebugLayersUpdates != debugLayersUpdates) || (prevDebugOverdraw != debugOverdraw) || |
| 139 | (prevDebugStencilClip != debugStencilClip); |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | void Properties::overrideProperty(const char* name, const char* value) { |
| 143 | if (!strcmp(name, "disableProfileBars")) { |
| 144 | sDisableProfileBars = !strcmp(value, "true"); |
| 145 | ALOGD("profile bars %s", sDisableProfileBars ? "disabled" : "enabled"); |
| 146 | return; |
| 147 | } else if (!strcmp(name, "ambientRatio")) { |
Chris Craik | e6a15ee | 2015-07-07 18:42:17 -0700 | [diff] [blame] | 148 | overrideAmbientRatio = std::min(std::max(atof(value), 0.0), 10.0); |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 149 | ALOGD("ambientRatio = %.2f", overrideAmbientRatio); |
| 150 | return; |
| 151 | } else if (!strcmp(name, "lightRadius")) { |
Chris Craik | e6a15ee | 2015-07-07 18:42:17 -0700 | [diff] [blame] | 152 | overrideLightRadius = std::min(std::max(atof(value), 0.0), 3000.0); |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 153 | ALOGD("lightRadius = %.2f", overrideLightRadius); |
| 154 | return; |
| 155 | } else if (!strcmp(name, "lightPosY")) { |
Chris Craik | e6a15ee | 2015-07-07 18:42:17 -0700 | [diff] [blame] | 156 | overrideLightPosY = std::min(std::max(atof(value), 0.0), 3000.0); |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 157 | ALOGD("lightPos Y = %.2f", overrideLightPosY); |
| 158 | return; |
| 159 | } else if (!strcmp(name, "lightPosZ")) { |
Chris Craik | e6a15ee | 2015-07-07 18:42:17 -0700 | [diff] [blame] | 160 | overrideLightPosZ = std::min(std::max(atof(value), 0.0), 3000.0); |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 161 | ALOGD("lightPos Z = %.2f", overrideLightPosZ); |
| 162 | return; |
| 163 | } else if (!strcmp(name, "ambientShadowStrength")) { |
| 164 | overrideAmbientShadowStrength = atoi(value); |
| 165 | ALOGD("ambient shadow strength = 0x%x out of 0xff", overrideAmbientShadowStrength); |
| 166 | return; |
| 167 | } else if (!strcmp(name, "spotShadowStrength")) { |
| 168 | overrideSpotShadowStrength = atoi(value); |
| 169 | ALOGD("spot shadow strength = 0x%x out of 0xff", overrideSpotShadowStrength); |
| 170 | return; |
| 171 | } |
| 172 | ALOGD("failed overriding property %s to %s", name, value); |
| 173 | } |
| 174 | |
| 175 | ProfileType Properties::getProfileType() { |
| 176 | if (CC_UNLIKELY(sDisableProfileBars && sProfileType == ProfileType::Bars)) |
| 177 | return ProfileType::None; |
| 178 | return sProfileType; |
| 179 | } |
| 180 | |
Stan Iliev | 03de074 | 2016-07-07 12:35:54 -0400 | [diff] [blame] | 181 | RenderPipelineType Properties::getRenderPipelineType() { |
John Reck | 113ddd9 | 2017-11-09 16:21:21 -0800 | [diff] [blame] | 182 | if (sRenderPipelineType != RenderPipelineType::NotInitialized) { |
Stan Iliev | 03de074 | 2016-07-07 12:35:54 -0400 | [diff] [blame] | 183 | return sRenderPipelineType; |
| 184 | } |
| 185 | char prop[PROPERTY_VALUE_MAX]; |
Derek Sollenberger | 04f1f01 | 2017-07-24 14:21:16 -0400 | [diff] [blame] | 186 | property_get(PROPERTY_RENDERER, prop, "skiagl"); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 187 | if (!strcmp(prop, "skiagl")) { |
Chris Craik | 6e66b39 | 2017-02-21 12:41:49 -0800 | [diff] [blame] | 188 | ALOGD("Skia GL Pipeline"); |
Stan Iliev | 03de074 | 2016-07-07 12:35:54 -0400 | [diff] [blame] | 189 | sRenderPipelineType = RenderPipelineType::SkiaGL; |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 190 | } else if (!strcmp(prop, "skiavk")) { |
Chris Craik | 6e66b39 | 2017-02-21 12:41:49 -0800 | [diff] [blame] | 191 | ALOGD("Skia Vulkan Pipeline"); |
Stan Iliev | 8a33e40 | 2016-07-08 09:57:49 -0400 | [diff] [blame] | 192 | sRenderPipelineType = RenderPipelineType::SkiaVulkan; |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 193 | } else { //"opengl" |
Chris Craik | 6e66b39 | 2017-02-21 12:41:49 -0800 | [diff] [blame] | 194 | ALOGD("HWUI GL Pipeline"); |
Stan Iliev | 03de074 | 2016-07-07 12:35:54 -0400 | [diff] [blame] | 195 | sRenderPipelineType = RenderPipelineType::OpenGL; |
| 196 | } |
| 197 | return sRenderPipelineType; |
| 198 | } |
| 199 | |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 200 | void Properties::overrideRenderPipelineType(RenderPipelineType type) { |
John Reck | 113ddd9 | 2017-11-09 16:21:21 -0800 | [diff] [blame] | 201 | #if !defined(HWUI_GLES_WRAP_ENABLED) |
| 202 | // If we're doing actual rendering then we can't change the renderer after it's been set. |
| 203 | // Unit tests can freely change this as often as it wants, though, as there's no actual |
| 204 | // GL rendering happening |
| 205 | if (sRenderPipelineType != RenderPipelineType::NotInitialized) { |
| 206 | return; |
| 207 | } |
| 208 | #endif |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 209 | sRenderPipelineType = type; |
| 210 | } |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 211 | |
Derek Sollenberger | 0df6209 | 2016-09-27 16:04:42 -0400 | [diff] [blame] | 212 | bool Properties::isSkiaEnabled() { |
| 213 | auto renderType = getRenderPipelineType(); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 214 | return RenderPipelineType::SkiaGL == renderType || RenderPipelineType::SkiaVulkan == renderType; |
Derek Sollenberger | 0df6209 | 2016-09-27 16:04:42 -0400 | [diff] [blame] | 215 | } |
| 216 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 217 | }; // namespace uirenderer |
| 218 | }; // namespace android |