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