blob: afe88f4e80ea075887da3b320a2cbbcb2eaee01f [file] [log] [blame]
John Reck67b1e2b2020-08-26 13:17:24 -07001/*
2 * Copyright 2020 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_NDEBUG 0
Ana Krulec70d15b1b2020-12-01 10:05:15 -080018#undef LOG_TAG
19#define LOG_TAG "RenderEngine"
20#define ATRACE_TAG ATRACE_TAG_GRAPHICS
21
Alec Mouri4ce5ec02021-01-07 17:33:21 -080022#include "SkiaGLRenderEngine.h"
John Reck67b1e2b2020-08-26 13:17:24 -070023
John Reck67b1e2b2020-08-26 13:17:24 -070024#include <EGL/egl.h>
25#include <EGL/eglext.h>
John Reck67b1e2b2020-08-26 13:17:24 -070026#include <GrContextOptions.h>
John Reck67b1e2b2020-08-26 13:17:24 -070027#include <SkCanvas.h>
Alec Mourib34f0b72020-10-02 13:18:34 -070028#include <SkColorFilter.h>
29#include <SkColorMatrix.h>
Alec Mourib5777452020-09-28 11:32:42 -070030#include <SkColorSpace.h>
Derek Sollenberger0e6d3562021-04-07 19:34:39 -040031#include <SkGraphics.h>
John Reck67b1e2b2020-08-26 13:17:24 -070032#include <SkImage.h>
Lucas Dupinf4cb4a02020-09-22 14:19:26 -070033#include <SkImageFilters.h>
Alec Mouric0aae732021-01-12 13:32:18 -080034#include <SkRegion.h>
Lucas Dupin3f11e922020-09-22 17:31:04 -070035#include <SkShadowUtils.h>
John Reck67b1e2b2020-08-26 13:17:24 -070036#include <SkSurface.h>
Ana Krulec1d12b3b2021-01-27 16:49:51 -080037#include <android-base/stringprintf.h>
Alec Mourib5777452020-09-28 11:32:42 -070038#include <gl/GrGLInterface.h>
Alec Mouricbd30932021-06-09 15:52:25 -070039#include <gui/TraceUtils.h>
Alec Mouri4ce5ec02021-01-07 17:33:21 -080040#include <sync/sync.h>
41#include <ui/BlurRegion.h>
Ana Krulec1d12b3b2021-01-27 16:49:51 -080042#include <ui/DebugUtils.h>
Alec Mouri4ce5ec02021-01-07 17:33:21 -080043#include <ui/GraphicBuffer.h>
44#include <utils/Trace.h>
Alec Mourib5777452020-09-28 11:32:42 -070045
46#include <cmath>
Alec Mouri4ce5ec02021-01-07 17:33:21 -080047#include <cstdint>
48#include <memory>
49
50#include "../gl/GLExtensions.h"
Derek Sollenberger0e6d3562021-04-07 19:34:39 -040051#include "Cache.h"
Alec Mouric0aae732021-01-12 13:32:18 -080052#include "ColorSpaces.h"
Alec Mouri4ce5ec02021-01-07 17:33:21 -080053#include "SkBlendMode.h"
54#include "SkImageInfo.h"
55#include "filters/BlurFilter.h"
56#include "filters/LinearEffect.h"
57#include "log/log_main.h"
58#include "skia/debug/SkiaCapture.h"
Derek Sollenberger0e6d3562021-04-07 19:34:39 -040059#include "skia/debug/SkiaMemoryReporter.h"
Nader Jawad2dfc98b2021-04-08 20:35:39 -070060#include "skia/filters/StretchShaderFactory.h"
Alec Mouri4ce5ec02021-01-07 17:33:21 -080061#include "system/graphics-base-v1.0.h"
Alec Mourib5777452020-09-28 11:32:42 -070062
Nathaniel Nifongb9f27ef2021-04-01 16:44:12 -040063namespace {
64// Debugging settings
65static const bool kPrintLayerSettings = false;
66static const bool kFlushAfterEveryLayer = false;
67} // namespace
68
John Reck67b1e2b2020-08-26 13:17:24 -070069bool checkGlError(const char* op, int lineNumber);
70
71namespace android {
72namespace renderengine {
73namespace skia {
74
Ana Krulec1d12b3b2021-01-27 16:49:51 -080075using base::StringAppendF;
76
John Reck67b1e2b2020-08-26 13:17:24 -070077static status_t selectConfigForAttribute(EGLDisplay dpy, EGLint const* attrs, EGLint attribute,
78 EGLint wanted, EGLConfig* outConfig) {
79 EGLint numConfigs = -1, n = 0;
80 eglGetConfigs(dpy, nullptr, 0, &numConfigs);
81 std::vector<EGLConfig> configs(numConfigs, EGL_NO_CONFIG_KHR);
82 eglChooseConfig(dpy, attrs, configs.data(), configs.size(), &n);
83 configs.resize(n);
84
85 if (!configs.empty()) {
86 if (attribute != EGL_NONE) {
87 for (EGLConfig config : configs) {
88 EGLint value = 0;
89 eglGetConfigAttrib(dpy, config, attribute, &value);
90 if (wanted == value) {
91 *outConfig = config;
92 return NO_ERROR;
93 }
94 }
95 } else {
96 // just pick the first one
97 *outConfig = configs[0];
98 return NO_ERROR;
99 }
100 }
101
102 return NAME_NOT_FOUND;
103}
104
105static status_t selectEGLConfig(EGLDisplay display, EGLint format, EGLint renderableType,
106 EGLConfig* config) {
107 // select our EGLConfig. It must support EGL_RECORDABLE_ANDROID if
108 // it is to be used with WIFI displays
109 status_t err;
110 EGLint wantedAttribute;
111 EGLint wantedAttributeValue;
112
113 std::vector<EGLint> attribs;
114 if (renderableType) {
115 const ui::PixelFormat pixelFormat = static_cast<ui::PixelFormat>(format);
116 const bool is1010102 = pixelFormat == ui::PixelFormat::RGBA_1010102;
117
118 // Default to 8 bits per channel.
119 const EGLint tmpAttribs[] = {
120 EGL_RENDERABLE_TYPE,
121 renderableType,
122 EGL_RECORDABLE_ANDROID,
123 EGL_TRUE,
124 EGL_SURFACE_TYPE,
125 EGL_WINDOW_BIT | EGL_PBUFFER_BIT,
126 EGL_FRAMEBUFFER_TARGET_ANDROID,
127 EGL_TRUE,
128 EGL_RED_SIZE,
129 is1010102 ? 10 : 8,
130 EGL_GREEN_SIZE,
131 is1010102 ? 10 : 8,
132 EGL_BLUE_SIZE,
133 is1010102 ? 10 : 8,
134 EGL_ALPHA_SIZE,
135 is1010102 ? 2 : 8,
136 EGL_NONE,
137 };
138 std::copy(tmpAttribs, tmpAttribs + (sizeof(tmpAttribs) / sizeof(EGLint)),
139 std::back_inserter(attribs));
140 wantedAttribute = EGL_NONE;
141 wantedAttributeValue = EGL_NONE;
142 } else {
143 // if no renderable type specified, fallback to a simplified query
144 wantedAttribute = EGL_NATIVE_VISUAL_ID;
145 wantedAttributeValue = format;
146 }
147
148 err = selectConfigForAttribute(display, attribs.data(), wantedAttribute, wantedAttributeValue,
149 config);
150 if (err == NO_ERROR) {
151 EGLint caveat;
152 if (eglGetConfigAttrib(display, *config, EGL_CONFIG_CAVEAT, &caveat))
153 ALOGW_IF(caveat == EGL_SLOW_CONFIG, "EGL_SLOW_CONFIG selected!");
154 }
155
156 return err;
157}
158
159std::unique_ptr<SkiaGLRenderEngine> SkiaGLRenderEngine::create(
160 const RenderEngineCreationArgs& args) {
161 // initialize EGL for the default display
162 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
163 if (!eglInitialize(display, nullptr, nullptr)) {
164 LOG_ALWAYS_FATAL("failed to initialize EGL");
165 }
166
Yiwei Zhange2650962020-12-01 23:27:58 +0000167 const auto eglVersion = eglQueryString(display, EGL_VERSION);
John Reck67b1e2b2020-08-26 13:17:24 -0700168 if (!eglVersion) {
169 checkGlError(__FUNCTION__, __LINE__);
Yiwei Zhange2650962020-12-01 23:27:58 +0000170 LOG_ALWAYS_FATAL("eglQueryString(EGL_VERSION) failed");
John Reck67b1e2b2020-08-26 13:17:24 -0700171 }
172
Yiwei Zhange2650962020-12-01 23:27:58 +0000173 const auto eglExtensions = eglQueryString(display, EGL_EXTENSIONS);
John Reck67b1e2b2020-08-26 13:17:24 -0700174 if (!eglExtensions) {
175 checkGlError(__FUNCTION__, __LINE__);
Yiwei Zhange2650962020-12-01 23:27:58 +0000176 LOG_ALWAYS_FATAL("eglQueryString(EGL_EXTENSIONS) failed");
John Reck67b1e2b2020-08-26 13:17:24 -0700177 }
178
179 auto& extensions = gl::GLExtensions::getInstance();
180 extensions.initWithEGLStrings(eglVersion, eglExtensions);
181
182 // The code assumes that ES2 or later is available if this extension is
183 // supported.
184 EGLConfig config = EGL_NO_CONFIG_KHR;
185 if (!extensions.hasNoConfigContext()) {
186 config = chooseEglConfig(display, args.pixelFormat, /*logConfig*/ true);
187 }
188
John Reck67b1e2b2020-08-26 13:17:24 -0700189 EGLContext protectedContext = EGL_NO_CONTEXT;
Alec Mourid6f09462020-12-07 11:18:17 -0800190 const std::optional<RenderEngine::ContextPriority> priority = createContextPriority(args);
John Reck67b1e2b2020-08-26 13:17:24 -0700191 if (args.enableProtectedContext && extensions.hasProtectedContent()) {
Alec Mourid6f09462020-12-07 11:18:17 -0800192 protectedContext =
193 createEglContext(display, config, nullptr, priority, Protection::PROTECTED);
John Reck67b1e2b2020-08-26 13:17:24 -0700194 ALOGE_IF(protectedContext == EGL_NO_CONTEXT, "Can't create protected context");
195 }
196
Alec Mourid6f09462020-12-07 11:18:17 -0800197 EGLContext ctxt =
198 createEglContext(display, config, protectedContext, priority, Protection::UNPROTECTED);
John Reck67b1e2b2020-08-26 13:17:24 -0700199
200 // if can't create a GL context, we can only abort.
201 LOG_ALWAYS_FATAL_IF(ctxt == EGL_NO_CONTEXT, "EGLContext creation failed");
202
203 EGLSurface placeholder = EGL_NO_SURFACE;
204 if (!extensions.hasSurfacelessContext()) {
205 placeholder = createPlaceholderEglPbufferSurface(display, config, args.pixelFormat,
206 Protection::UNPROTECTED);
207 LOG_ALWAYS_FATAL_IF(placeholder == EGL_NO_SURFACE, "can't create placeholder pbuffer");
208 }
209 EGLBoolean success = eglMakeCurrent(display, placeholder, placeholder, ctxt);
210 LOG_ALWAYS_FATAL_IF(!success, "can't make placeholder pbuffer current");
211 extensions.initWithGLStrings(glGetString(GL_VENDOR), glGetString(GL_RENDERER),
212 glGetString(GL_VERSION), glGetString(GL_EXTENSIONS));
213
214 EGLSurface protectedPlaceholder = EGL_NO_SURFACE;
215 if (protectedContext != EGL_NO_CONTEXT && !extensions.hasSurfacelessContext()) {
216 protectedPlaceholder = createPlaceholderEglPbufferSurface(display, config, args.pixelFormat,
217 Protection::PROTECTED);
218 ALOGE_IF(protectedPlaceholder == EGL_NO_SURFACE,
219 "can't create protected placeholder pbuffer");
220 }
221
222 // initialize the renderer while GL is current
223 std::unique_ptr<SkiaGLRenderEngine> engine =
Lucas Dupind508e472020-11-04 04:32:06 +0000224 std::make_unique<SkiaGLRenderEngine>(args, display, ctxt, placeholder, protectedContext,
225 protectedPlaceholder);
John Reck67b1e2b2020-08-26 13:17:24 -0700226
227 ALOGI("OpenGL ES informations:");
228 ALOGI("vendor : %s", extensions.getVendor());
229 ALOGI("renderer : %s", extensions.getRenderer());
230 ALOGI("version : %s", extensions.getVersion());
231 ALOGI("extensions: %s", extensions.getExtensions());
232 ALOGI("GL_MAX_TEXTURE_SIZE = %zu", engine->getMaxTextureSize());
233 ALOGI("GL_MAX_VIEWPORT_DIMS = %zu", engine->getMaxViewportDims());
234
235 return engine;
236}
237
Ady Abrahamfe2a6db2021-06-09 15:41:37 -0700238std::future<void> SkiaGLRenderEngine::primeCache() {
Leon Scroggins IIIb9216dc2021-03-08 17:19:01 -0500239 Cache::primeShaderCache(this);
Ady Abrahamfe2a6db2021-06-09 15:41:37 -0700240 return {};
Leon Scroggins IIIb9216dc2021-03-08 17:19:01 -0500241}
242
John Reck67b1e2b2020-08-26 13:17:24 -0700243EGLConfig SkiaGLRenderEngine::chooseEglConfig(EGLDisplay display, int format, bool logConfig) {
244 status_t err;
245 EGLConfig config;
246
247 // First try to get an ES3 config
248 err = selectEGLConfig(display, format, EGL_OPENGL_ES3_BIT, &config);
249 if (err != NO_ERROR) {
250 // If ES3 fails, try to get an ES2 config
251 err = selectEGLConfig(display, format, EGL_OPENGL_ES2_BIT, &config);
252 if (err != NO_ERROR) {
253 // If ES2 still doesn't work, probably because we're on the emulator.
254 // try a simplified query
255 ALOGW("no suitable EGLConfig found, trying a simpler query");
256 err = selectEGLConfig(display, format, 0, &config);
257 if (err != NO_ERROR) {
258 // this EGL is too lame for android
259 LOG_ALWAYS_FATAL("no suitable EGLConfig found, giving up");
260 }
261 }
262 }
263
264 if (logConfig) {
265 // print some debugging info
266 EGLint r, g, b, a;
267 eglGetConfigAttrib(display, config, EGL_RED_SIZE, &r);
268 eglGetConfigAttrib(display, config, EGL_GREEN_SIZE, &g);
269 eglGetConfigAttrib(display, config, EGL_BLUE_SIZE, &b);
270 eglGetConfigAttrib(display, config, EGL_ALPHA_SIZE, &a);
271 ALOGI("EGL information:");
272 ALOGI("vendor : %s", eglQueryString(display, EGL_VENDOR));
273 ALOGI("version : %s", eglQueryString(display, EGL_VERSION));
274 ALOGI("extensions: %s", eglQueryString(display, EGL_EXTENSIONS));
275 ALOGI("Client API: %s", eglQueryString(display, EGL_CLIENT_APIS) ?: "Not Supported");
276 ALOGI("EGLSurface: %d-%d-%d-%d, config=%p", r, g, b, a, config);
277 }
278
279 return config;
280}
281
Leon Scroggins III9f3072c2021-03-22 10:42:47 -0400282sk_sp<SkData> SkiaGLRenderEngine::SkSLCacheMonitor::load(const SkData& key) {
283 // This "cache" does not actually cache anything. It just allows us to
284 // monitor Skia's internal cache. So this method always returns null.
285 return nullptr;
286}
287
288void SkiaGLRenderEngine::SkSLCacheMonitor::store(const SkData& key, const SkData& data,
289 const SkString& description) {
290 mShadersCachedSinceLastCall++;
291}
292
293void SkiaGLRenderEngine::assertShadersCompiled(int numShaders) {
294 const int cached = mSkSLCacheMonitor.shadersCachedSinceLastCall();
295 LOG_ALWAYS_FATAL_IF(cached != numShaders, "Attempted to cache %i shaders; cached %i",
296 numShaders, cached);
297}
298
Nathaniel Nifongb9f27ef2021-04-01 16:44:12 -0400299int SkiaGLRenderEngine::reportShadersCompiled() {
300 return mSkSLCacheMonitor.shadersCachedSinceLastCall();
301}
302
Lucas Dupinf4cb4a02020-09-22 14:19:26 -0700303SkiaGLRenderEngine::SkiaGLRenderEngine(const RenderEngineCreationArgs& args, EGLDisplay display,
Lucas Dupind508e472020-11-04 04:32:06 +0000304 EGLContext ctxt, EGLSurface placeholder,
Lucas Dupinf4cb4a02020-09-22 14:19:26 -0700305 EGLContext protectedContext, EGLSurface protectedPlaceholder)
Alec Mouri0d995102021-02-24 16:53:38 -0800306 : SkiaRenderEngine(args.renderEngineType),
307 mEGLDisplay(display),
John Reck67b1e2b2020-08-26 13:17:24 -0700308 mEGLContext(ctxt),
309 mPlaceholderSurface(placeholder),
310 mProtectedEGLContext(protectedContext),
Alec Mourib5777452020-09-28 11:32:42 -0700311 mProtectedPlaceholderSurface(protectedPlaceholder),
Derek Sollenbergerc4a05e12021-03-24 16:45:20 -0400312 mDefaultPixelFormat(static_cast<PixelFormat>(args.pixelFormat)),
Alec Mouri0d995102021-02-24 16:53:38 -0800313 mUseColorManagement(args.useColorManagement) {
John Reck67b1e2b2020-08-26 13:17:24 -0700314 sk_sp<const GrGLInterface> glInterface(GrGLCreateNativeInterface());
315 LOG_ALWAYS_FATAL_IF(!glInterface.get());
316
317 GrContextOptions options;
Derek Sollenbergerc4a05e12021-03-24 16:45:20 -0400318 options.fDisableDriverCorrectnessWorkarounds = true;
John Reck67b1e2b2020-08-26 13:17:24 -0700319 options.fDisableDistanceFieldPaths = true;
Nathaniel Nifongf8d35e92021-06-08 15:02:25 -0400320 options.fReducedShaderVariations = true;
Leon Scroggins III9f3072c2021-03-22 10:42:47 -0400321 options.fPersistentCache = &mSkSLCacheMonitor;
Lucas Dupind508e472020-11-04 04:32:06 +0000322 mGrContext = GrDirectContext::MakeGL(glInterface, options);
323 if (useProtectedContext(true)) {
324 mProtectedGrContext = GrDirectContext::MakeGL(glInterface, options);
325 useProtectedContext(false);
326 }
Lucas Dupinf4cb4a02020-09-22 14:19:26 -0700327
328 if (args.supportsBackgroundBlur) {
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500329 ALOGD("Background Blurs Enabled");
Lucas Dupinf4cb4a02020-09-22 14:19:26 -0700330 mBlurFilter = new BlurFilter();
331 }
Alec Mouric0aae732021-01-12 13:32:18 -0800332 mCapture = std::make_unique<SkiaCapture>();
333}
334
335SkiaGLRenderEngine::~SkiaGLRenderEngine() {
Marin Shalamanovcea12ef2021-03-15 17:00:51 +0100336 std::lock_guard<std::mutex> lock(mRenderingMutex);
Alec Mouric0aae732021-01-12 13:32:18 -0800337 if (mBlurFilter) {
338 delete mBlurFilter;
339 }
340
341 mCapture = nullptr;
342
343 mGrContext->flushAndSubmit(true);
344 mGrContext->abandonContext();
345
346 if (mProtectedGrContext) {
347 mProtectedGrContext->flushAndSubmit(true);
348 mProtectedGrContext->abandonContext();
349 }
350
351 if (mPlaceholderSurface != EGL_NO_SURFACE) {
352 eglDestroySurface(mEGLDisplay, mPlaceholderSurface);
353 }
354 if (mProtectedPlaceholderSurface != EGL_NO_SURFACE) {
355 eglDestroySurface(mEGLDisplay, mProtectedPlaceholderSurface);
356 }
357 if (mEGLContext != EGL_NO_CONTEXT) {
358 eglDestroyContext(mEGLDisplay, mEGLContext);
359 }
360 if (mProtectedEGLContext != EGL_NO_CONTEXT) {
361 eglDestroyContext(mEGLDisplay, mProtectedEGLContext);
362 }
363 eglMakeCurrent(mEGLDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
364 eglTerminate(mEGLDisplay);
365 eglReleaseThread();
John Reck67b1e2b2020-08-26 13:17:24 -0700366}
367
Lucas Dupind508e472020-11-04 04:32:06 +0000368bool SkiaGLRenderEngine::supportsProtectedContent() const {
369 return mProtectedEGLContext != EGL_NO_CONTEXT;
370}
371
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400372GrDirectContext* SkiaGLRenderEngine::getActiveGrContext() const {
373 return mInProtectedContext ? mProtectedGrContext.get() : mGrContext.get();
374}
375
Lucas Dupind508e472020-11-04 04:32:06 +0000376bool SkiaGLRenderEngine::useProtectedContext(bool useProtectedContext) {
377 if (useProtectedContext == mInProtectedContext) {
378 return true;
379 }
Alec Mourif6a07812021-02-11 21:07:55 -0800380 if (useProtectedContext && !supportsProtectedContent()) {
Lucas Dupind508e472020-11-04 04:32:06 +0000381 return false;
382 }
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400383
384 // release any scratch resources before switching into a new mode
385 if (getActiveGrContext()) {
386 getActiveGrContext()->purgeUnlockedResources(true);
387 }
388
Lucas Dupind508e472020-11-04 04:32:06 +0000389 const EGLSurface surface =
390 useProtectedContext ? mProtectedPlaceholderSurface : mPlaceholderSurface;
391 const EGLContext context = useProtectedContext ? mProtectedEGLContext : mEGLContext;
392 const bool success = eglMakeCurrent(mEGLDisplay, surface, surface, context) == EGL_TRUE;
Alec Mouric0aae732021-01-12 13:32:18 -0800393
Lucas Dupind508e472020-11-04 04:32:06 +0000394 if (success) {
395 mInProtectedContext = useProtectedContext;
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400396 // given that we are sharing the same thread between two GrContexts we need to
397 // make sure that the thread state is reset when switching between the two.
398 if (getActiveGrContext()) {
399 getActiveGrContext()->resetContext();
400 }
Lucas Dupind508e472020-11-04 04:32:06 +0000401 }
402 return success;
403}
404
John Reck67b1e2b2020-08-26 13:17:24 -0700405base::unique_fd SkiaGLRenderEngine::flush() {
406 ATRACE_CALL();
407 if (!gl::GLExtensions::getInstance().hasNativeFenceSync()) {
408 return base::unique_fd();
409 }
410
411 EGLSyncKHR sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_NATIVE_FENCE_ANDROID, nullptr);
412 if (sync == EGL_NO_SYNC_KHR) {
413 ALOGW("failed to create EGL native fence sync: %#x", eglGetError());
414 return base::unique_fd();
415 }
416
417 // native fence fd will not be populated until flush() is done.
418 glFlush();
419
420 // get the fence fd
421 base::unique_fd fenceFd(eglDupNativeFenceFDANDROID(mEGLDisplay, sync));
422 eglDestroySyncKHR(mEGLDisplay, sync);
423 if (fenceFd == EGL_NO_NATIVE_FENCE_FD_ANDROID) {
424 ALOGW("failed to dup EGL native fence sync: %#x", eglGetError());
425 }
426
427 return fenceFd;
428}
429
430bool SkiaGLRenderEngine::waitFence(base::unique_fd fenceFd) {
431 if (!gl::GLExtensions::getInstance().hasNativeFenceSync() ||
432 !gl::GLExtensions::getInstance().hasWaitSync()) {
433 return false;
434 }
435
436 // release the fd and transfer the ownership to EGLSync
437 EGLint attribs[] = {EGL_SYNC_NATIVE_FENCE_FD_ANDROID, fenceFd.release(), EGL_NONE};
438 EGLSyncKHR sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_NATIVE_FENCE_ANDROID, attribs);
439 if (sync == EGL_NO_SYNC_KHR) {
440 ALOGE("failed to create EGL native fence sync: %#x", eglGetError());
441 return false;
442 }
443
444 // XXX: The spec draft is inconsistent as to whether this should return an
445 // EGLint or void. Ignore the return value for now, as it's not strictly
446 // needed.
447 eglWaitSyncKHR(mEGLDisplay, sync, 0);
448 EGLint error = eglGetError();
449 eglDestroySyncKHR(mEGLDisplay, sync);
450 if (error != EGL_SUCCESS) {
451 ALOGE("failed to wait for EGL native fence sync: %#x", error);
452 return false;
453 }
454
455 return true;
456}
457
Alec Mouri678245d2020-09-30 16:58:23 -0700458static float toDegrees(uint32_t transform) {
459 switch (transform) {
460 case ui::Transform::ROT_90:
461 return 90.0;
462 case ui::Transform::ROT_180:
463 return 180.0;
464 case ui::Transform::ROT_270:
465 return 270.0;
466 default:
467 return 0.0;
468 }
469}
470
Alec Mourib34f0b72020-10-02 13:18:34 -0700471static SkColorMatrix toSkColorMatrix(const mat4& matrix) {
472 return SkColorMatrix(matrix[0][0], matrix[1][0], matrix[2][0], matrix[3][0], 0, matrix[0][1],
473 matrix[1][1], matrix[2][1], matrix[3][1], 0, matrix[0][2], matrix[1][2],
474 matrix[2][2], matrix[3][2], 0, matrix[0][3], matrix[1][3], matrix[2][3],
475 matrix[3][3], 0);
476}
477
Alec Mouri029d1952020-10-12 10:37:08 -0700478static bool needsToneMapping(ui::Dataspace sourceDataspace, ui::Dataspace destinationDataspace) {
479 int64_t sourceTransfer = sourceDataspace & HAL_DATASPACE_TRANSFER_MASK;
480 int64_t destTransfer = destinationDataspace & HAL_DATASPACE_TRANSFER_MASK;
481
482 // Treat unsupported dataspaces as srgb
483 if (destTransfer != HAL_DATASPACE_TRANSFER_LINEAR &&
484 destTransfer != HAL_DATASPACE_TRANSFER_HLG &&
485 destTransfer != HAL_DATASPACE_TRANSFER_ST2084) {
486 destTransfer = HAL_DATASPACE_TRANSFER_SRGB;
487 }
488
489 if (sourceTransfer != HAL_DATASPACE_TRANSFER_LINEAR &&
490 sourceTransfer != HAL_DATASPACE_TRANSFER_HLG &&
491 sourceTransfer != HAL_DATASPACE_TRANSFER_ST2084) {
492 sourceTransfer = HAL_DATASPACE_TRANSFER_SRGB;
493 }
494
495 const bool isSourceLinear = sourceTransfer == HAL_DATASPACE_TRANSFER_LINEAR;
496 const bool isSourceSRGB = sourceTransfer == HAL_DATASPACE_TRANSFER_SRGB;
497 const bool isDestLinear = destTransfer == HAL_DATASPACE_TRANSFER_LINEAR;
498 const bool isDestSRGB = destTransfer == HAL_DATASPACE_TRANSFER_SRGB;
499
500 return !(isSourceLinear && isDestSRGB) && !(isSourceSRGB && isDestLinear) &&
501 sourceTransfer != destTransfer;
502}
503
Alec Mouria90a5702021-04-16 16:36:21 +0000504void SkiaGLRenderEngine::mapExternalTextureBuffer(const sp<GraphicBuffer>& buffer,
505 bool isRenderable) {
Ana Krulecdfec8f52021-01-13 12:51:47 -0800506 // Only run this if RE is running on its own thread. This way the access to GL
507 // operations is guaranteed to be happening on the same thread.
508 if (mRenderEngineType != RenderEngineType::SKIA_GL_THREADED) {
509 return;
510 }
Derek Sollenbergerbc14f3c2021-05-21 14:29:16 -0400511 // We currently don't attempt to map a buffer if the buffer contains protected content
Derek Sollenberger45007182021-06-10 14:47:21 -0400512 // because GPU resources for protected buffers is much more limited.
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400513 const bool isProtectedBuffer = buffer->getUsage() & GRALLOC_USAGE_PROTECTED;
Derek Sollenberger45007182021-06-10 14:47:21 -0400514 if (isProtectedBuffer) {
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400515 return;
516 }
Ana Krulecdfec8f52021-01-13 12:51:47 -0800517 ATRACE_CALL();
518
Derek Sollenberger45007182021-06-10 14:47:21 -0400519 // If we were to support caching protected buffers then we will need to switch the
520 // currently bound context if we are not already using the protected context (and subsequently
521 // switch back after the buffer is cached). However, for non-protected content we can bind
522 // the texture in either GL context because they are initialized with the same share_context
523 // which allows the texture state to be shared between them.
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400524 auto grContext = getActiveGrContext();
Derek Sollenbergerbc14f3c2021-05-21 14:29:16 -0400525 auto& cache = mTextureCache;
Derek Sollenbergereb904d42021-03-22 12:58:53 -0400526
527 std::lock_guard<std::mutex> lock(mRenderingMutex);
Alec Mouria90a5702021-04-16 16:36:21 +0000528 mGraphicBufferExternalRefs[buffer->getId()]++;
529
530 if (const auto& iter = cache.find(buffer->getId()); iter == cache.end()) {
Ana Krulecdfec8f52021-01-13 12:51:47 -0800531 std::shared_ptr<AutoBackendTexture::LocalRef> imageTextureRef =
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400532 std::make_shared<AutoBackendTexture::LocalRef>(grContext,
Derek Sollenbergerd8fdae32021-04-09 13:52:59 -0400533 buffer->toAHardwareBuffer(),
534 isRenderable);
Derek Sollenbergereb904d42021-03-22 12:58:53 -0400535 cache.insert({buffer->getId(), imageTextureRef});
Ana Krulecdfec8f52021-01-13 12:51:47 -0800536 }
537}
538
Alec Mouria90a5702021-04-16 16:36:21 +0000539void SkiaGLRenderEngine::unmapExternalTextureBuffer(const sp<GraphicBuffer>& buffer) {
Ana Krulecdfec8f52021-01-13 12:51:47 -0800540 ATRACE_CALL();
John Reck67b1e2b2020-08-26 13:17:24 -0700541 std::lock_guard<std::mutex> lock(mRenderingMutex);
Alec Mouria90a5702021-04-16 16:36:21 +0000542 if (const auto& iter = mGraphicBufferExternalRefs.find(buffer->getId());
543 iter != mGraphicBufferExternalRefs.end()) {
544 if (iter->second == 0) {
545 ALOGW("Attempted to unmap GraphicBuffer <id: %" PRId64
546 "> from RenderEngine texture, but the "
547 "ref count was already zero!",
548 buffer->getId());
549 mGraphicBufferExternalRefs.erase(buffer->getId());
550 return;
551 }
552
553 iter->second--;
554
Alec Mouric2ffeb42021-06-17 17:42:27 -0700555 // Swap contexts if needed prior to deleting this buffer
556 // See Issue 1 of
557 // https://www.khronos.org/registry/EGL/extensions/EXT/EGL_EXT_protected_content.txt: even
558 // when a protected context and an unprotected context are part of the same share group,
559 // protected surfaces may not be accessed by an unprotected context, implying that protected
560 // surfaces may only be freed when a protected context is active.
561 const bool inProtected = mInProtectedContext;
562 useProtectedContext(buffer->getUsage() & GRALLOC_USAGE_PROTECTED);
563
Alec Mouria90a5702021-04-16 16:36:21 +0000564 if (iter->second == 0) {
565 mTextureCache.erase(buffer->getId());
Alec Mouria90a5702021-04-16 16:36:21 +0000566 mGraphicBufferExternalRefs.erase(buffer->getId());
567 }
Alec Mouric2ffeb42021-06-17 17:42:27 -0700568
569 // Swap back to the previous context so that cached values of isProtected in SurfaceFlinger
570 // are up-to-date.
571 if (inProtected != mInProtectedContext) {
572 useProtectedContext(inProtected);
573 }
Alec Mouria90a5702021-04-16 16:36:21 +0000574 }
John Reck67b1e2b2020-08-26 13:17:24 -0700575}
576
Nader Jawad2dfc98b2021-04-08 20:35:39 -0700577sk_sp<SkShader> SkiaGLRenderEngine::createRuntimeEffectShader(
578 sk_sp<SkShader> shader,
579 const LayerSettings* layer, const DisplaySettings& display, bool undoPremultipliedAlpha,
580 bool requiresLinearEffect) {
581 const auto stretchEffect = layer->stretchEffect;
Nader Jawad63644d32021-05-07 10:44:21 -0700582 // The given surface will be stretched by HWUI via matrix transformation
583 // which gets similar results for most surfaces
584 // Determine later on if we need to leverage the stertch shader within
585 // surface flinger
Nader Jawadc088bdc2021-05-10 13:24:46 -0700586 if (stretchEffect.hasEffect()) {
Nader Jawad2dfc98b2021-04-08 20:35:39 -0700587 const auto targetBuffer = layer->source.buffer.buffer;
Nader Jawadc088bdc2021-05-10 13:24:46 -0700588 const auto graphicBuffer = targetBuffer ? targetBuffer->getBuffer() : nullptr;
589 if (graphicBuffer && shader) {
Nader Jawad2dfc98b2021-04-08 20:35:39 -0700590 shader = mStretchShaderFactory.createSkShader(shader, stretchEffect);
591 }
John Reckcdb4ed72021-02-04 13:39:33 -0500592 }
Nader Jawad2dfc98b2021-04-08 20:35:39 -0700593
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -0500594 if (requiresLinearEffect) {
595 const ui::Dataspace inputDataspace =
596 mUseColorManagement ? layer->sourceDataspace : ui::Dataspace::UNKNOWN;
597 const ui::Dataspace outputDataspace =
598 mUseColorManagement ? display.outputDataspace : ui::Dataspace::UNKNOWN;
599
600 LinearEffect effect = LinearEffect{.inputDataspace = inputDataspace,
601 .outputDataspace = outputDataspace,
Ana Krulec47814212021-01-06 19:00:10 -0800602 .undoPremultipliedAlpha = undoPremultipliedAlpha};
603
604 auto effectIter = mRuntimeEffects.find(effect);
605 sk_sp<SkRuntimeEffect> runtimeEffect = nullptr;
606 if (effectIter == mRuntimeEffects.end()) {
607 runtimeEffect = buildRuntimeEffect(effect);
608 mRuntimeEffects.insert({effect, runtimeEffect});
609 } else {
610 runtimeEffect = effectIter->second;
611 }
John Reckac09e452021-04-07 16:35:37 -0400612 float maxLuminance = layer->source.buffer.maxLuminanceNits;
613 // If the buffer doesn't have a max luminance, treat it as SDR & use the display's SDR
614 // white point
615 if (maxLuminance <= 0.f) {
616 maxLuminance = display.sdrWhitePointNits;
617 }
Ana Krulec47814212021-01-06 19:00:10 -0800618 return createLinearEffectShader(shader, effect, runtimeEffect, layer->colorTransform,
John Reckac09e452021-04-07 16:35:37 -0400619 display.maxLuminance, maxLuminance);
Ana Krulec47814212021-01-06 19:00:10 -0800620 }
621 return shader;
622}
623
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500624void SkiaGLRenderEngine::initCanvas(SkCanvas* canvas, const DisplaySettings& display) {
Derek Sollenberger76664d62021-02-04 11:13:09 -0500625 if (CC_UNLIKELY(mCapture->isCaptureRunning())) {
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500626 // Record display settings when capture is running.
627 std::stringstream displaySettings;
628 PrintTo(display, &displaySettings);
629 // Store the DisplaySettings in additional information.
630 canvas->drawAnnotation(SkRect::MakeEmpty(), "DisplaySettings",
631 SkData::MakeWithCString(displaySettings.str().c_str()));
632 }
633
634 // Before doing any drawing, let's make sure that we'll start at the origin of the display.
635 // Some displays don't start at 0,0 for example when we're mirroring the screen. Also, virtual
636 // displays might have different scaling when compared to the physical screen.
637
638 canvas->clipRect(getSkRect(display.physicalDisplay));
639 canvas->translate(display.physicalDisplay.left, display.physicalDisplay.top);
640
641 const auto clipWidth = display.clip.width();
642 const auto clipHeight = display.clip.height();
643 auto rotatedClipWidth = clipWidth;
644 auto rotatedClipHeight = clipHeight;
645 // Scale is contingent on the rotation result.
646 if (display.orientation & ui::Transform::ROT_90) {
647 std::swap(rotatedClipWidth, rotatedClipHeight);
648 }
649 const auto scaleX = static_cast<SkScalar>(display.physicalDisplay.width()) /
650 static_cast<SkScalar>(rotatedClipWidth);
651 const auto scaleY = static_cast<SkScalar>(display.physicalDisplay.height()) /
652 static_cast<SkScalar>(rotatedClipHeight);
653 canvas->scale(scaleX, scaleY);
654
655 // Canvas rotation is done by centering the clip window at the origin, rotating, translating
656 // back so that the top left corner of the clip is at (0, 0).
657 canvas->translate(rotatedClipWidth / 2, rotatedClipHeight / 2);
658 canvas->rotate(toDegrees(display.orientation));
659 canvas->translate(-clipWidth / 2, -clipHeight / 2);
660 canvas->translate(-display.clip.left, -display.clip.top);
661}
662
Derek Sollenberger7c42bef2021-02-23 13:01:39 -0500663class AutoSaveRestore {
664public:
665 AutoSaveRestore(SkCanvas* canvas) : mCanvas(canvas) { mSaveCount = canvas->save(); }
666 ~AutoSaveRestore() { restore(); }
667 void replace(SkCanvas* canvas) {
668 mCanvas = canvas;
669 mSaveCount = canvas->save();
670 }
671 void restore() {
672 if (mCanvas) {
673 mCanvas->restoreToCount(mSaveCount);
674 mCanvas = nullptr;
675 }
676 }
677
678private:
679 SkCanvas* mCanvas;
680 int mSaveCount;
681};
682
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -0400683static SkRRect getBlurRRect(const BlurRegion& region) {
684 const auto rect = SkRect::MakeLTRB(region.left, region.top, region.right, region.bottom);
685 const SkVector radii[4] = {SkVector::Make(region.cornerRadiusTL, region.cornerRadiusTL),
686 SkVector::Make(region.cornerRadiusTR, region.cornerRadiusTR),
687 SkVector::Make(region.cornerRadiusBR, region.cornerRadiusBR),
688 SkVector::Make(region.cornerRadiusBL, region.cornerRadiusBL)};
689 SkRRect roundedRect;
690 roundedRect.setRectRadii(rect, radii);
691 return roundedRect;
692}
693
John Reck67b1e2b2020-08-26 13:17:24 -0700694status_t SkiaGLRenderEngine::drawLayers(const DisplaySettings& display,
695 const std::vector<const LayerSettings*>& layers,
Alec Mouria90a5702021-04-16 16:36:21 +0000696 const std::shared_ptr<ExternalTexture>& buffer,
697 const bool /*useFramebufferCache*/,
John Reck67b1e2b2020-08-26 13:17:24 -0700698 base::unique_fd&& bufferFence, base::unique_fd* drawFence) {
699 ATRACE_NAME("SkiaGL::drawLayers");
Alec Mouric0aae732021-01-12 13:32:18 -0800700
John Reck67b1e2b2020-08-26 13:17:24 -0700701 std::lock_guard<std::mutex> lock(mRenderingMutex);
702 if (layers.empty()) {
703 ALOGV("Drawing empty layer stack");
704 return NO_ERROR;
705 }
706
707 if (bufferFence.get() >= 0) {
708 // Duplicate the fence for passing to waitFence.
709 base::unique_fd bufferFenceDup(dup(bufferFence.get()));
710 if (bufferFenceDup < 0 || !waitFence(std::move(bufferFenceDup))) {
711 ATRACE_NAME("Waiting before draw");
712 sync_wait(bufferFence.get(), -1);
713 }
714 }
715 if (buffer == nullptr) {
716 ALOGE("No output buffer provided. Aborting GPU composition.");
717 return BAD_VALUE;
718 }
719
Alec Mouria90a5702021-04-16 16:36:21 +0000720 validateOutputBufferUsage(buffer->getBuffer());
Ady Abraham193426d2021-02-18 14:01:53 -0800721
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400722 auto grContext = getActiveGrContext();
Derek Sollenberger45007182021-06-10 14:47:21 -0400723 auto& cache = mTextureCache;
John Reck67b1e2b2020-08-26 13:17:24 -0700724
Alec Mouria90a5702021-04-16 16:36:21 +0000725 std::shared_ptr<AutoBackendTexture::LocalRef> surfaceTextureRef;
726 if (const auto& it = cache.find(buffer->getBuffer()->getId()); it != cache.end()) {
727 surfaceTextureRef = it->second;
728 } else {
Derek Sollenbergerd8fdae32021-04-09 13:52:59 -0400729 surfaceTextureRef =
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400730 std::make_shared<AutoBackendTexture::LocalRef>(grContext,
731 buffer->getBuffer()
732 ->toAHardwareBuffer(),
733 true);
John Reck67b1e2b2020-08-26 13:17:24 -0700734 }
Alec Mouric7f6c8b2020-11-09 18:35:20 -0800735
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -0500736 const ui::Dataspace dstDataspace =
737 mUseColorManagement ? display.outputDataspace : ui::Dataspace::UNKNOWN;
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400738 sk_sp<SkSurface> dstSurface = surfaceTextureRef->getOrCreateSurface(dstDataspace, grContext);
Alec Mouri678245d2020-09-30 16:58:23 -0700739
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500740 SkCanvas* dstCanvas = mCapture->tryCapture(dstSurface.get());
741 if (dstCanvas == nullptr) {
Ana Krulec6eab17a2020-12-09 15:52:36 -0800742 ALOGE("Cannot acquire canvas from Skia.");
743 return BAD_VALUE;
744 }
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500745
Derek Sollenbergerc20e0802021-05-19 16:20:59 -0400746 // setup color filter if necessary
747 sk_sp<SkColorFilter> displayColorTransform;
748 if (display.colorTransform != mat4()) {
749 displayColorTransform = SkColorFilters::Matrix(toSkColorMatrix(display.colorTransform));
750 }
751 const bool ctModifiesAlpha =
752 displayColorTransform && !displayColorTransform->isAlphaUnchanged();
753
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500754 // Find if any layers have requested blur, we'll use that info to decide when to render to an
755 // offscreen buffer and when to render to the native buffer.
756 sk_sp<SkSurface> activeSurface(dstSurface);
757 SkCanvas* canvas = dstCanvas;
Derek Sollenberger76664d62021-02-04 11:13:09 -0500758 SkiaCapture::OffscreenState offscreenCaptureState;
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500759 const LayerSettings* blurCompositionLayer = nullptr;
760 if (mBlurFilter) {
761 bool requiresCompositionLayer = false;
762 for (const auto& layer : layers) {
Derek Sollenbergerc20e0802021-05-19 16:20:59 -0400763 // if the layer doesn't have blur or it is not visible then continue
764 if (!layerHasBlur(layer, ctModifiesAlpha)) {
765 continue;
766 }
Derek Sollenberger3134ec32021-02-12 11:26:23 -0500767 if (layer->backgroundBlurRadius > 0 &&
768 layer->backgroundBlurRadius < BlurFilter::kMaxCrossFadeRadius) {
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500769 requiresCompositionLayer = true;
770 }
771 for (auto region : layer->blurRegions) {
772 if (region.blurRadius < BlurFilter::kMaxCrossFadeRadius) {
773 requiresCompositionLayer = true;
774 }
775 }
776 if (requiresCompositionLayer) {
777 activeSurface = dstSurface->makeSurface(dstSurface->imageInfo());
Derek Sollenberger76664d62021-02-04 11:13:09 -0500778 canvas = mCapture->tryOffscreenCapture(activeSurface.get(), &offscreenCaptureState);
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500779 blurCompositionLayer = layer;
780 break;
781 }
782 }
783 }
784
Derek Sollenberger7c42bef2021-02-23 13:01:39 -0500785 AutoSaveRestore surfaceAutoSaveRestore(canvas);
Alec Mouri678245d2020-09-30 16:58:23 -0700786 // Clear the entire canvas with a transparent black to prevent ghost images.
787 canvas->clear(SK_ColorTRANSPARENT);
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500788 initCanvas(canvas, display);
Alec Mouric0aae732021-01-12 13:32:18 -0800789
790 // TODO: clearRegion was required for SurfaceView when a buffer is not yet available but the
791 // view is still on-screen. The clear region could be re-specified as a black color layer,
792 // however.
793 if (!display.clearRegion.isEmpty()) {
Derek Sollenberger545ec442021-01-25 10:02:23 -0500794 ATRACE_NAME("ClearRegion");
Alec Mouric0aae732021-01-12 13:32:18 -0800795 size_t numRects = 0;
796 Rect const* rects = display.clearRegion.getArray(&numRects);
797 SkIRect skRects[numRects];
798 for (int i = 0; i < numRects; ++i) {
799 skRects[i] =
800 SkIRect::MakeLTRB(rects[i].left, rects[i].top, rects[i].right, rects[i].bottom);
801 }
802 SkRegion clearRegion;
803 SkPaint paint;
804 sk_sp<SkShader> shader =
805 SkShaders::Color(SkColor4f{.fR = 0., .fG = 0., .fB = 0., .fA = 1.0},
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -0500806 toSkColorSpace(dstDataspace));
Alec Mouric0aae732021-01-12 13:32:18 -0800807 paint.setShader(shader);
808 clearRegion.setRects(skRects, numRects);
809 canvas->drawRegion(clearRegion, paint);
810 }
811
John Reck67b1e2b2020-08-26 13:17:24 -0700812 for (const auto& layer : layers) {
Alec Mouricbd30932021-06-09 15:52:25 -0700813 ATRACE_FORMAT("DrawLayer: %s", layer->name.c_str());
Galia Peychevaf7889b32020-11-25 22:22:40 +0100814
Nathaniel Nifongb9f27ef2021-04-01 16:44:12 -0400815 if (kPrintLayerSettings) {
816 std::stringstream ls;
817 PrintTo(*layer, &ls);
818 auto debugs = ls.str();
819 int pos = 0;
820 while (pos < debugs.size()) {
821 ALOGD("cache_debug %s", debugs.substr(pos, 1000).c_str());
822 pos += 1000;
823 }
824 }
825
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500826 sk_sp<SkImage> blurInput;
827 if (blurCompositionLayer == layer) {
828 LOG_ALWAYS_FATAL_IF(activeSurface == dstSurface);
829 LOG_ALWAYS_FATAL_IF(canvas == dstCanvas);
830
831 // save a snapshot of the activeSurface to use as input to the blur shaders
832 blurInput = activeSurface->makeImageSnapshot();
833
834 // TODO we could skip this step if we know the blur will cover the entire image
835 // blit the offscreen framebuffer into the destination AHB
836 SkPaint paint;
837 paint.setBlendMode(SkBlendMode::kSrc);
Derek Sollenberger76664d62021-02-04 11:13:09 -0500838 if (CC_UNLIKELY(mCapture->isCaptureRunning())) {
839 uint64_t id = mCapture->endOffscreenCapture(&offscreenCaptureState);
840 dstCanvas->drawAnnotation(SkRect::Make(dstCanvas->imageInfo().dimensions()),
841 String8::format("SurfaceID|%" PRId64, id).c_str(),
842 nullptr);
843 dstCanvas->drawImage(blurInput, 0, 0, SkSamplingOptions(), &paint);
844 } else {
845 activeSurface->draw(dstCanvas, 0, 0, SkSamplingOptions(), &paint);
846 }
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500847
848 // assign dstCanvas to canvas and ensure that the canvas state is up to date
849 canvas = dstCanvas;
Derek Sollenberger7c42bef2021-02-23 13:01:39 -0500850 surfaceAutoSaveRestore.replace(canvas);
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500851 initCanvas(canvas, display);
852
853 LOG_ALWAYS_FATAL_IF(activeSurface->getCanvas()->getSaveCount() !=
854 dstSurface->getCanvas()->getSaveCount());
855 LOG_ALWAYS_FATAL_IF(activeSurface->getCanvas()->getTotalMatrix() !=
856 dstSurface->getCanvas()->getTotalMatrix());
857
858 // assign dstSurface to activeSurface
859 activeSurface = dstSurface;
860 }
861
Derek Sollenberger7c42bef2021-02-23 13:01:39 -0500862 SkAutoCanvasRestore layerAutoSaveRestore(canvas, true);
Derek Sollenberger76664d62021-02-04 11:13:09 -0500863 if (CC_UNLIKELY(mCapture->isCaptureRunning())) {
Ana Krulec6eab17a2020-12-09 15:52:36 -0800864 // Record the name of the layer if the capture is running.
865 std::stringstream layerSettings;
866 PrintTo(*layer, &layerSettings);
867 // Store the LayerSettings in additional information.
868 canvas->drawAnnotation(SkRect::MakeEmpty(), layer->name.c_str(),
869 SkData::MakeWithCString(layerSettings.str().c_str()));
870 }
Galia Peychevaf7889b32020-11-25 22:22:40 +0100871 // Layers have a local transform that should be applied to them
872 canvas->concat(getSkM44(layer->geometry.positionTransform).asM33());
Galia Peycheva6c460652020-11-03 19:42:42 +0100873
Derek Sollenbergerc31985e2021-05-18 16:38:17 -0400874 const auto [bounds, roundRectClip] =
875 getBoundsAndClip(layer->geometry.boundaries, layer->geometry.roundedCornersCrop,
876 layer->geometry.roundedCornersRadius);
Derek Sollenbergerc20e0802021-05-19 16:20:59 -0400877 if (mBlurFilter && layerHasBlur(layer, ctModifiesAlpha)) {
Derek Sollenbergerecb21462021-01-29 16:53:49 -0500878 std::unordered_map<uint32_t, sk_sp<SkImage>> cachedBlurs;
879
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500880 // if multiple layers have blur, then we need to take a snapshot now because
881 // only the lowest layer will have blurImage populated earlier
882 if (!blurInput) {
883 blurInput = activeSurface->makeImageSnapshot();
884 }
Derek Sollenbergerecb21462021-01-29 16:53:49 -0500885 // rect to be blurred in the coordinate space of blurInput
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -0400886 const auto blurRect = canvas->getTotalMatrix().mapRect(bounds.rect());
887
888 // if the clip needs to be applied then apply it now and make sure
889 // it is restored before we attempt to draw any shadows.
890 SkAutoCanvasRestore acr(canvas, true);
891 if (!roundRectClip.isEmpty()) {
892 canvas->clipRRect(roundRectClip, true);
893 }
Derek Sollenbergerecb21462021-01-29 16:53:49 -0500894
Galia Peychevae425ac82021-03-15 17:12:03 +0100895 // TODO(b/182216890): Filter out empty layers earlier
896 if (blurRect.width() > 0 && blurRect.height() > 0) {
897 if (layer->backgroundBlurRadius > 0) {
898 ATRACE_NAME("BackgroundBlur");
899 auto blurredImage =
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400900 mBlurFilter->generate(grContext, layer->backgroundBlurRadius, blurInput,
901 blurRect);
Galia Peycheva80116e52020-11-06 11:57:25 +0100902
Galia Peychevae425ac82021-03-15 17:12:03 +0100903 cachedBlurs[layer->backgroundBlurRadius] = blurredImage;
Derek Sollenbergerecb21462021-01-29 16:53:49 -0500904
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -0400905 mBlurFilter->drawBlurRegion(canvas, bounds, layer->backgroundBlurRadius, 1.0f,
906 blurRect, blurredImage, blurInput);
Lucas Dupinc3800b82020-10-02 16:24:48 -0700907 }
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -0400908
Derek Sollenberger39feade2021-04-27 16:08:40 -0400909 canvas->concat(getSkM44(layer->blurRegionTransform).asM33());
Galia Peychevae425ac82021-03-15 17:12:03 +0100910 for (auto region : layer->blurRegions) {
911 if (cachedBlurs[region.blurRadius] == nullptr) {
912 ATRACE_NAME("BlurRegion");
913 cachedBlurs[region.blurRadius] =
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400914 mBlurFilter->generate(grContext, region.blurRadius, blurInput,
Galia Peychevae425ac82021-03-15 17:12:03 +0100915 blurRect);
916 }
Derek Sollenberger3f77aa42021-02-04 11:06:34 -0500917
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -0400918 mBlurFilter->drawBlurRegion(canvas, getBlurRRect(region), region.blurRadius,
919 region.alpha, blurRect,
Galia Peychevae425ac82021-03-15 17:12:03 +0100920 cachedBlurs[region.blurRadius], blurInput);
921 }
Lucas Dupinc3800b82020-10-02 16:24:48 -0700922 }
Lucas Dupinf4cb4a02020-09-22 14:19:26 -0700923 }
924
Derek Sollenberger4c331c82021-02-23 13:09:50 -0500925 if (layer->shadow.length > 0) {
Leon Scroggins IIIcf3d95c2021-03-19 13:06:32 -0400926 // This would require a new parameter/flag to SkShadowUtils::DrawShadow
927 LOG_ALWAYS_FATAL_IF(layer->disableBlending, "Cannot disableBlending with a shadow");
Leon Scroggins III63e86952021-05-12 10:45:08 -0400928
Derek Sollenbergerc31985e2021-05-18 16:38:17 -0400929 SkRRect shadowBounds, shadowClip;
930 if (layer->geometry.boundaries == layer->shadow.boundaries) {
931 shadowBounds = bounds;
932 shadowClip = roundRectClip;
933 } else {
934 std::tie(shadowBounds, shadowClip) =
935 getBoundsAndClip(layer->shadow.boundaries,
936 layer->geometry.roundedCornersCrop,
937 layer->geometry.roundedCornersRadius);
938 }
939
Leon Scroggins III63e86952021-05-12 10:45:08 -0400940 // Technically, if bounds is a rect and roundRectClip is not empty,
941 // it means that the bounds and roundedCornersCrop were different
942 // enough that we should intersect them to find the proper shadow.
943 // In practice, this often happens when the two rectangles appear to
944 // not match due to rounding errors. Draw the rounded version, which
945 // looks more like the intent.
946 const auto& rrect =
Derek Sollenbergerc31985e2021-05-18 16:38:17 -0400947 shadowBounds.isRect() && !shadowClip.isEmpty() ? shadowClip : shadowBounds;
Leon Scroggins III63e86952021-05-12 10:45:08 -0400948 drawShadow(canvas, rrect, layer->shadow);
Derek Sollenberger4c331c82021-02-23 13:09:50 -0500949 }
950
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -0500951 const bool requiresLinearEffect = layer->colorTransform != mat4() ||
952 (mUseColorManagement &&
John Reckac09e452021-04-07 16:35:37 -0400953 needsToneMapping(layer->sourceDataspace, display.outputDataspace)) ||
954 (display.sdrWhitePointNits > 0.f &&
955 display.sdrWhitePointNits != display.maxLuminance);
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -0500956
957 // quick abort from drawing the remaining portion of the layer
Derek Sollenbergerc31985e2021-05-18 16:38:17 -0400958 if (layer->skipContentDraw ||
959 (layer->alpha == 0 && !requiresLinearEffect && !layer->disableBlending &&
960 (!displayColorTransform || displayColorTransform->isAlphaUnchanged()))) {
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -0500961 continue;
962 }
963
964 // If we need to map to linear space or color management is disabled, then mark the source
965 // image with the same colorspace as the destination surface so that Skia's color
966 // management is a no-op.
967 const ui::Dataspace layerDataspace = (!mUseColorManagement || requiresLinearEffect)
968 ? dstDataspace
969 : layer->sourceDataspace;
Alec Mouric0aae732021-01-12 13:32:18 -0800970
Derek Sollenbergerecb21462021-01-29 16:53:49 -0500971 SkPaint paint;
John Reck67b1e2b2020-08-26 13:17:24 -0700972 if (layer->source.buffer.buffer) {
973 ATRACE_NAME("DrawImage");
Alec Mouria90a5702021-04-16 16:36:21 +0000974 validateInputBufferUsage(layer->source.buffer.buffer->getBuffer());
John Reck67b1e2b2020-08-26 13:17:24 -0700975 const auto& item = layer->source.buffer;
Alec Mouric7f6c8b2020-11-09 18:35:20 -0800976 std::shared_ptr<AutoBackendTexture::LocalRef> imageTextureRef = nullptr;
Alec Mouria90a5702021-04-16 16:36:21 +0000977
978 if (const auto& iter = cache.find(item.buffer->getBuffer()->getId());
979 iter != cache.end()) {
Alec Mouric7f6c8b2020-11-09 18:35:20 -0800980 imageTextureRef = iter->second;
John Reck67b1e2b2020-08-26 13:17:24 -0700981 } else {
Alec Mouria90a5702021-04-16 16:36:21 +0000982 // If we didn't find the image in the cache, then create a local ref but don't cache
983 // it. If we're using skia, we're guaranteed to run on a dedicated GPU thread so if
984 // we didn't find anything in the cache then we intentionally did not cache this
985 // buffer's resources.
Derek Sollenbergerd8fdae32021-04-09 13:52:59 -0400986 imageTextureRef = std::make_shared<
Derek Sollenbergerb24258c2021-05-04 13:47:34 -0400987 AutoBackendTexture::LocalRef>(grContext,
Derek Sollenbergerd8fdae32021-04-09 13:52:59 -0400988 item.buffer->getBuffer()->toAHardwareBuffer(),
989 false);
John Reck67b1e2b2020-08-26 13:17:24 -0700990 }
Alec Mouri1a4d0642020-11-13 17:42:01 -0800991
Leon Scroggins IIIc4e0cbd2021-05-25 10:25:20 -0400992 // isOpaque means we need to ignore the alpha in the image,
993 // replacing it with the alpha specified by the LayerSettings. See
994 // https://developer.android.com/reference/android/view/SurfaceControl.Builder#setOpaque(boolean)
995 // The proper way to do this is to use an SkColorType that ignores
996 // alpha, like kRGB_888x_SkColorType, and that is used if the
997 // incoming image is kRGBA_8888_SkColorType. However, the incoming
998 // image may be kRGBA_F16_SkColorType, for which there is no RGBX
999 // SkColorType, or kRGBA_1010102_SkColorType, for which we have
1000 // kRGB_101010x_SkColorType, but it is not yet supported as a source
1001 // on the GPU. (Adding both is tracked in skbug.com/12048.) In the
1002 // meantime, we'll use a workaround that works unless we need to do
1003 // any color conversion. The workaround requires that we pretend the
1004 // image is already premultiplied, so that we do not premultiply it
1005 // before applying SkBlendMode::kPlus.
1006 const bool useIsOpaqueWorkaround = item.isOpaque &&
1007 (imageTextureRef->colorType() == kRGBA_1010102_SkColorType ||
1008 imageTextureRef->colorType() == kRGBA_F16_SkColorType);
1009 const auto alphaType = useIsOpaqueWorkaround ? kPremul_SkAlphaType
1010 : item.isOpaque ? kOpaque_SkAlphaType
1011 : item.usePremultipliedAlpha ? kPremul_SkAlphaType
1012 : kUnpremul_SkAlphaType;
1013 sk_sp<SkImage> image = imageTextureRef->makeImage(layerDataspace, alphaType, grContext);
Alec Mouri678245d2020-09-30 16:58:23 -07001014
1015 auto texMatrix = getSkM44(item.textureTransform).asM33();
1016 // textureTansform was intended to be passed directly into a shader, so when
1017 // building the total matrix with the textureTransform we need to first
1018 // normalize it, then apply the textureTransform, then scale back up.
Derek Sollenbergerecb21462021-01-29 16:53:49 -05001019 texMatrix.preScale(1.0f / bounds.width(), 1.0f / bounds.height());
Huihong Luo3a3cf3c2020-12-07 17:05:41 -08001020 texMatrix.postScale(image->width(), image->height());
Alec Mouri678245d2020-09-30 16:58:23 -07001021
Huihong Luo3a3cf3c2020-12-07 17:05:41 -08001022 SkMatrix matrix;
1023 if (!texMatrix.invert(&matrix)) {
1024 matrix = texMatrix;
Alec Mouri678245d2020-09-30 16:58:23 -07001025 }
Ana Krulecf9a15d92020-12-11 08:35:00 -08001026 // The shader does not respect the translation, so we add it to the texture
1027 // transform for the SkImage. This will make sure that the correct layer contents
1028 // are drawn in the correct part of the screen.
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001029 matrix.postTranslate(bounds.rect().fLeft, bounds.rect().fTop);
Alec Mouri678245d2020-09-30 16:58:23 -07001030
Ana Krulecb7b28b22020-11-23 14:48:58 -08001031 sk_sp<SkShader> shader;
1032
1033 if (layer->source.buffer.useTextureFiltering) {
1034 shader = image->makeShader(SkTileMode::kClamp, SkTileMode::kClamp,
1035 SkSamplingOptions(
1036 {SkFilterMode::kLinear, SkMipmapMode::kNone}),
1037 &matrix);
1038 } else {
Mike Reed711e1f02020-12-11 13:06:19 -05001039 shader = image->makeShader(SkSamplingOptions(), matrix);
Ana Krulecb7b28b22020-11-23 14:48:58 -08001040 }
Alec Mouri029d1952020-10-12 10:37:08 -07001041
Leon Scroggins IIIc4e0cbd2021-05-25 10:25:20 -04001042 if (useIsOpaqueWorkaround) {
Alec Mouric0aae732021-01-12 13:32:18 -08001043 shader = SkShaders::Blend(SkBlendMode::kPlus, shader,
1044 SkShaders::Color(SkColors::kBlack,
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -05001045 toSkColorSpace(layerDataspace)));
Alec Mouric0aae732021-01-12 13:32:18 -08001046 }
1047
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -05001048 paint.setShader(createRuntimeEffectShader(shader, layer, display,
1049 !item.isOpaque && item.usePremultipliedAlpha,
1050 requiresLinearEffect));
Ana Krulec1768bd22020-11-23 14:51:31 -08001051 paint.setAlphaf(layer->alpha);
John Reck67b1e2b2020-08-26 13:17:24 -07001052 } else {
1053 ATRACE_NAME("DrawColor");
John Reck67b1e2b2020-08-26 13:17:24 -07001054 const auto color = layer->source.solidColor;
Ana Krulec47814212021-01-06 19:00:10 -08001055 sk_sp<SkShader> shader = SkShaders::Color(SkColor4f{.fR = color.r,
1056 .fG = color.g,
1057 .fB = color.b,
Alec Mouric0aae732021-01-12 13:32:18 -08001058 .fA = layer->alpha},
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -05001059 toSkColorSpace(layerDataspace));
Ana Krulec47814212021-01-06 19:00:10 -08001060 paint.setShader(createRuntimeEffectShader(shader, layer, display,
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -05001061 /* undoPremultipliedAlpha */ false,
1062 requiresLinearEffect));
John Reck67b1e2b2020-08-26 13:17:24 -07001063 }
Lucas Dupin21f348e2020-09-16 17:31:26 -07001064
Leon Scroggins IIIcf3d95c2021-03-19 13:06:32 -04001065 if (layer->disableBlending) {
1066 paint.setBlendMode(SkBlendMode::kSrc);
1067 }
1068
Derek Sollenbergere2fe78c2021-02-23 13:22:54 -05001069 paint.setColorFilter(displayColorTransform);
Alec Mourib34f0b72020-10-02 13:18:34 -07001070
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001071 if (!roundRectClip.isEmpty()) {
1072 canvas->clipRRect(roundRectClip, true);
1073 }
1074
1075 if (!bounds.isRect()) {
Derek Sollenberger4c331c82021-02-23 13:09:50 -05001076 paint.setAntiAlias(true);
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001077 canvas->drawRRect(bounds, paint);
Alec Mouribd17b3b2020-12-17 11:08:30 -08001078 } else {
Nader Jawad63644d32021-05-07 10:44:21 -07001079 canvas->drawRect(bounds.rect(), paint);
Lucas Dupin3f11e922020-09-22 17:31:04 -07001080 }
Nathaniel Nifongb9f27ef2021-04-01 16:44:12 -04001081 if (kFlushAfterEveryLayer) {
1082 ATRACE_NAME("flush surface");
1083 activeSurface->flush();
1084 }
John Reck67b1e2b2020-08-26 13:17:24 -07001085 }
Derek Sollenberger7c42bef2021-02-23 13:01:39 -05001086 surfaceAutoSaveRestore.restore();
Alec Mouric0aae732021-01-12 13:32:18 -08001087 mCapture->endCapture();
John Reck67b1e2b2020-08-26 13:17:24 -07001088 {
1089 ATRACE_NAME("flush surface");
Derek Sollenberger3f77aa42021-02-04 11:06:34 -05001090 LOG_ALWAYS_FATAL_IF(activeSurface != dstSurface);
1091 activeSurface->flush();
John Reck67b1e2b2020-08-26 13:17:24 -07001092 }
1093
1094 if (drawFence != nullptr) {
1095 *drawFence = flush();
1096 }
1097
1098 // If flush failed or we don't support native fences, we need to force the
1099 // gl command stream to be executed.
1100 bool requireSync = drawFence == nullptr || drawFence->get() < 0;
1101 if (requireSync) {
1102 ATRACE_BEGIN("Submit(sync=true)");
1103 } else {
1104 ATRACE_BEGIN("Submit(sync=false)");
1105 }
Lucas Dupind508e472020-11-04 04:32:06 +00001106 bool success = grContext->submit(requireSync);
John Reck67b1e2b2020-08-26 13:17:24 -07001107 ATRACE_END();
1108 if (!success) {
1109 ALOGE("Failed to flush RenderEngine commands");
1110 // Chances are, something illegal happened (either the caller passed
1111 // us bad parameters, or we messed up our shader generation).
1112 return INVALID_OPERATION;
1113 }
1114
1115 // checkErrors();
1116 return NO_ERROR;
1117}
1118
Lucas Dupin3f11e922020-09-22 17:31:04 -07001119inline SkRect SkiaGLRenderEngine::getSkRect(const FloatRect& rect) {
1120 return SkRect::MakeLTRB(rect.left, rect.top, rect.right, rect.bottom);
1121}
1122
1123inline SkRect SkiaGLRenderEngine::getSkRect(const Rect& rect) {
1124 return SkRect::MakeLTRB(rect.left, rect.top, rect.right, rect.bottom);
1125}
1126
Derek Sollenbergerc31985e2021-05-18 16:38:17 -04001127inline std::pair<SkRRect, SkRRect> SkiaGLRenderEngine::getBoundsAndClip(const FloatRect& boundsRect,
1128 const FloatRect& cropRect,
1129 const float cornerRadius) {
1130 const SkRect bounds = getSkRect(boundsRect);
1131 const SkRect crop = getSkRect(cropRect);
Lucas Dupin21f348e2020-09-16 17:31:26 -07001132
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001133 SkRRect clip;
1134 if (cornerRadius > 0) {
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001135 // it the crop and the bounds are equivalent or there is no crop then we don't need a clip
1136 if (bounds == crop || crop.isEmpty()) {
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001137 return {SkRRect::MakeRectXY(bounds, cornerRadius, cornerRadius), clip};
1138 }
1139
1140 // This makes an effort to speed up common, simple bounds + clip combinations by
1141 // converting them to a single RRect draw. It is possible there are other cases
1142 // that can be converted.
1143 if (crop.contains(bounds)) {
1144 bool intersectionIsRoundRect = true;
1145 // check each cropped corner to ensure that it exactly matches the crop or is full
1146 SkVector radii[4];
1147
1148 const auto insetCrop = crop.makeInset(cornerRadius, cornerRadius);
1149
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001150 const bool leftEqual = bounds.fLeft == crop.fLeft;
1151 const bool topEqual = bounds.fTop == crop.fTop;
1152 const bool rightEqual = bounds.fRight == crop.fRight;
1153 const bool bottomEqual = bounds.fBottom == crop.fBottom;
1154
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001155 // compute the UpperLeft corner radius
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001156 if (leftEqual && topEqual) {
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001157 radii[0].set(cornerRadius, cornerRadius);
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001158 } else if ((leftEqual && bounds.fTop >= insetCrop.fTop) ||
1159 (topEqual && bounds.fLeft >= insetCrop.fLeft) ||
1160 insetCrop.contains(bounds.fLeft, bounds.fTop)) {
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001161 radii[0].set(0, 0);
1162 } else {
1163 intersectionIsRoundRect = false;
1164 }
1165 // compute the UpperRight corner radius
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001166 if (rightEqual && topEqual) {
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001167 radii[1].set(cornerRadius, cornerRadius);
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001168 } else if ((rightEqual && bounds.fTop >= insetCrop.fTop) ||
1169 (topEqual && bounds.fRight <= insetCrop.fRight) ||
1170 insetCrop.contains(bounds.fRight, bounds.fTop)) {
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001171 radii[1].set(0, 0);
1172 } else {
1173 intersectionIsRoundRect = false;
1174 }
1175 // compute the BottomRight corner radius
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001176 if (rightEqual && bottomEqual) {
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001177 radii[2].set(cornerRadius, cornerRadius);
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001178 } else if ((rightEqual && bounds.fBottom <= insetCrop.fBottom) ||
1179 (bottomEqual && bounds.fRight <= insetCrop.fRight) ||
1180 insetCrop.contains(bounds.fRight, bounds.fBottom)) {
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001181 radii[2].set(0, 0);
1182 } else {
1183 intersectionIsRoundRect = false;
1184 }
1185 // compute the BottomLeft corner radius
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001186 if (leftEqual && bottomEqual) {
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001187 radii[3].set(cornerRadius, cornerRadius);
Derek Sollenberger4f9959f2021-05-12 16:47:37 -04001188 } else if ((leftEqual && bounds.fBottom <= insetCrop.fBottom) ||
1189 (bottomEqual && bounds.fLeft >= insetCrop.fLeft) ||
1190 insetCrop.contains(bounds.fLeft, bounds.fBottom)) {
Derek Sollenberger8e8b3bf2021-04-29 15:35:28 -04001191 radii[3].set(0, 0);
1192 } else {
1193 intersectionIsRoundRect = false;
1194 }
1195
1196 if (intersectionIsRoundRect) {
1197 SkRRect intersectionBounds;
1198 intersectionBounds.setRectRadii(bounds, radii);
1199 return {intersectionBounds, clip};
1200 }
1201 }
1202
1203 // we didn't it any of our fast paths so set the clip to the cropRect
1204 clip.setRectXY(crop, cornerRadius, cornerRadius);
1205 }
1206
1207 // if we hit this point then we either don't have rounded corners or we are going to rely
1208 // on the clip to round the corners for us
1209 return {SkRRect::MakeRect(bounds), clip};
Galia Peycheva80116e52020-11-06 11:57:25 +01001210}
1211
Derek Sollenbergerc20e0802021-05-19 16:20:59 -04001212inline bool SkiaGLRenderEngine::layerHasBlur(const LayerSettings* layer,
1213 bool colorTransformModifiesAlpha) {
1214 if (layer->backgroundBlurRadius > 0 || layer->blurRegions.size()) {
1215 // return false if the content is opaque and would therefore occlude the blur
1216 const bool opaqueContent = !layer->source.buffer.buffer || layer->source.buffer.isOpaque;
1217 const bool opaqueAlpha = layer->alpha == 1.0f && !colorTransformModifiesAlpha;
1218 return layer->skipContentDraw || !(opaqueContent && opaqueAlpha);
1219 }
1220 return false;
Derek Sollenbergerecb21462021-01-29 16:53:49 -05001221}
1222
Lucas Dupin3f11e922020-09-22 17:31:04 -07001223inline SkColor SkiaGLRenderEngine::getSkColor(const vec4& color) {
1224 return SkColorSetARGB(color.a * 255, color.r * 255, color.g * 255, color.b * 255);
1225}
1226
Lucas Dupinbb1a1d42020-09-18 15:17:02 -07001227inline SkM44 SkiaGLRenderEngine::getSkM44(const mat4& matrix) {
1228 return SkM44(matrix[0][0], matrix[1][0], matrix[2][0], matrix[3][0],
1229 matrix[0][1], matrix[1][1], matrix[2][1], matrix[3][1],
1230 matrix[0][2], matrix[1][2], matrix[2][2], matrix[3][2],
1231 matrix[0][3], matrix[1][3], matrix[2][3], matrix[3][3]);
1232}
1233
Lucas Dupin3f11e922020-09-22 17:31:04 -07001234inline SkPoint3 SkiaGLRenderEngine::getSkPoint3(const vec3& vector) {
1235 return SkPoint3::Make(vector.x, vector.y, vector.z);
1236}
1237
John Reck67b1e2b2020-08-26 13:17:24 -07001238size_t SkiaGLRenderEngine::getMaxTextureSize() const {
1239 return mGrContext->maxTextureSize();
1240}
1241
1242size_t SkiaGLRenderEngine::getMaxViewportDims() const {
1243 return mGrContext->maxRenderTargetSize();
1244}
1245
Derek Sollenbergerb0e764c2021-05-04 14:31:37 -04001246void SkiaGLRenderEngine::drawShadow(SkCanvas* canvas, const SkRRect& casterRRect,
Lucas Dupin3f11e922020-09-22 17:31:04 -07001247 const ShadowSettings& settings) {
1248 ATRACE_CALL();
1249 const float casterZ = settings.length / 2.0f;
Lucas Dupin3f11e922020-09-22 17:31:04 -07001250 const auto flags =
1251 settings.casterIsTranslucent ? kTransparentOccluder_ShadowFlag : kNone_ShadowFlag;
1252
Derek Sollenbergerb0e764c2021-05-04 14:31:37 -04001253 SkShadowUtils::DrawShadow(canvas, SkPath::RRect(casterRRect), SkPoint3::Make(0, 0, casterZ),
Lucas Dupin3f11e922020-09-22 17:31:04 -07001254 getSkPoint3(settings.lightPos), settings.lightRadius,
1255 getSkColor(settings.ambientColor), getSkColor(settings.spotColor),
1256 flags);
1257}
1258
John Reck67b1e2b2020-08-26 13:17:24 -07001259EGLContext SkiaGLRenderEngine::createEglContext(EGLDisplay display, EGLConfig config,
Alec Mourid6f09462020-12-07 11:18:17 -08001260 EGLContext shareContext,
1261 std::optional<ContextPriority> contextPriority,
John Reck67b1e2b2020-08-26 13:17:24 -07001262 Protection protection) {
1263 EGLint renderableType = 0;
1264 if (config == EGL_NO_CONFIG_KHR) {
1265 renderableType = EGL_OPENGL_ES3_BIT;
1266 } else if (!eglGetConfigAttrib(display, config, EGL_RENDERABLE_TYPE, &renderableType)) {
1267 LOG_ALWAYS_FATAL("can't query EGLConfig RENDERABLE_TYPE");
1268 }
1269 EGLint contextClientVersion = 0;
1270 if (renderableType & EGL_OPENGL_ES3_BIT) {
1271 contextClientVersion = 3;
1272 } else if (renderableType & EGL_OPENGL_ES2_BIT) {
1273 contextClientVersion = 2;
1274 } else if (renderableType & EGL_OPENGL_ES_BIT) {
1275 contextClientVersion = 1;
1276 } else {
1277 LOG_ALWAYS_FATAL("no supported EGL_RENDERABLE_TYPEs");
1278 }
1279
1280 std::vector<EGLint> contextAttributes;
1281 contextAttributes.reserve(7);
1282 contextAttributes.push_back(EGL_CONTEXT_CLIENT_VERSION);
1283 contextAttributes.push_back(contextClientVersion);
Alec Mourid6f09462020-12-07 11:18:17 -08001284 if (contextPriority) {
John Reck67b1e2b2020-08-26 13:17:24 -07001285 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LEVEL_IMG);
Alec Mourid6f09462020-12-07 11:18:17 -08001286 switch (*contextPriority) {
1287 case ContextPriority::REALTIME:
1288 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_REALTIME_NV);
1289 break;
1290 case ContextPriority::MEDIUM:
1291 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_MEDIUM_IMG);
1292 break;
1293 case ContextPriority::LOW:
1294 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LOW_IMG);
1295 break;
1296 case ContextPriority::HIGH:
1297 default:
1298 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_HIGH_IMG);
1299 break;
1300 }
John Reck67b1e2b2020-08-26 13:17:24 -07001301 }
1302 if (protection == Protection::PROTECTED) {
1303 contextAttributes.push_back(EGL_PROTECTED_CONTENT_EXT);
1304 contextAttributes.push_back(EGL_TRUE);
1305 }
1306 contextAttributes.push_back(EGL_NONE);
1307
1308 EGLContext context = eglCreateContext(display, config, shareContext, contextAttributes.data());
1309
1310 if (contextClientVersion == 3 && context == EGL_NO_CONTEXT) {
1311 // eglGetConfigAttrib indicated we can create GLES 3 context, but we failed, thus
1312 // EGL_NO_CONTEXT so that we can abort.
1313 if (config != EGL_NO_CONFIG_KHR) {
1314 return context;
1315 }
1316 // If |config| is EGL_NO_CONFIG_KHR, we speculatively try to create GLES 3 context, so we
1317 // should try to fall back to GLES 2.
1318 contextAttributes[1] = 2;
1319 context = eglCreateContext(display, config, shareContext, contextAttributes.data());
1320 }
1321
1322 return context;
1323}
1324
Alec Mourid6f09462020-12-07 11:18:17 -08001325std::optional<RenderEngine::ContextPriority> SkiaGLRenderEngine::createContextPriority(
1326 const RenderEngineCreationArgs& args) {
1327 if (!gl::GLExtensions::getInstance().hasContextPriority()) {
1328 return std::nullopt;
1329 }
1330
1331 switch (args.contextPriority) {
1332 case RenderEngine::ContextPriority::REALTIME:
1333 if (gl::GLExtensions::getInstance().hasRealtimePriority()) {
1334 return RenderEngine::ContextPriority::REALTIME;
1335 } else {
1336 ALOGI("Realtime priority unsupported, degrading gracefully to high priority");
1337 return RenderEngine::ContextPriority::HIGH;
1338 }
1339 case RenderEngine::ContextPriority::HIGH:
1340 case RenderEngine::ContextPriority::MEDIUM:
1341 case RenderEngine::ContextPriority::LOW:
1342 return args.contextPriority;
1343 default:
1344 return std::nullopt;
1345 }
1346}
1347
John Reck67b1e2b2020-08-26 13:17:24 -07001348EGLSurface SkiaGLRenderEngine::createPlaceholderEglPbufferSurface(EGLDisplay display,
1349 EGLConfig config, int hwcFormat,
1350 Protection protection) {
1351 EGLConfig placeholderConfig = config;
1352 if (placeholderConfig == EGL_NO_CONFIG_KHR) {
1353 placeholderConfig = chooseEglConfig(display, hwcFormat, /*logConfig*/ true);
1354 }
1355 std::vector<EGLint> attributes;
1356 attributes.reserve(7);
1357 attributes.push_back(EGL_WIDTH);
1358 attributes.push_back(1);
1359 attributes.push_back(EGL_HEIGHT);
1360 attributes.push_back(1);
1361 if (protection == Protection::PROTECTED) {
1362 attributes.push_back(EGL_PROTECTED_CONTENT_EXT);
1363 attributes.push_back(EGL_TRUE);
1364 }
1365 attributes.push_back(EGL_NONE);
1366
1367 return eglCreatePbufferSurface(display, placeholderConfig, attributes.data());
1368}
1369
Alec Mourid6f09462020-12-07 11:18:17 -08001370int SkiaGLRenderEngine::getContextPriority() {
1371 int value;
1372 eglQueryContext(mEGLDisplay, mEGLContext, EGL_CONTEXT_PRIORITY_LEVEL_IMG, &value);
1373 return value;
1374}
1375
Derek Sollenbergerc4a05e12021-03-24 16:45:20 -04001376void SkiaGLRenderEngine::onPrimaryDisplaySizeChanged(ui::Size size) {
1377 // This cache multiplier was selected based on review of cache sizes relative
1378 // to the screen resolution. Looking at the worst case memory needed by blur (~1.5x),
1379 // shadows (~1x), and general data structures (e.g. vertex buffers) we selected this as a
1380 // conservative default based on that analysis.
1381 const float SURFACE_SIZE_MULTIPLIER = 3.5f * bytesPerPixel(mDefaultPixelFormat);
1382 const int maxResourceBytes = size.width * size.height * SURFACE_SIZE_MULTIPLIER;
1383
1384 // start by resizing the current context
Derek Sollenbergerb24258c2021-05-04 13:47:34 -04001385 getActiveGrContext()->setResourceCacheLimit(maxResourceBytes);
Derek Sollenbergerc4a05e12021-03-24 16:45:20 -04001386
1387 // if it is possible to switch contexts then we will resize the other context
1388 if (useProtectedContext(!mInProtectedContext)) {
Derek Sollenbergerb24258c2021-05-04 13:47:34 -04001389 getActiveGrContext()->setResourceCacheLimit(maxResourceBytes);
Derek Sollenbergerc4a05e12021-03-24 16:45:20 -04001390 // reset back to the initial context that was active when this method was called
1391 useProtectedContext(!mInProtectedContext);
1392 }
1393}
1394
Ana Krulec1d12b3b2021-01-27 16:49:51 -08001395void SkiaGLRenderEngine::dump(std::string& result) {
1396 const gl::GLExtensions& extensions = gl::GLExtensions::getInstance();
1397
1398 StringAppendF(&result, "\n ------------RE-----------------\n");
1399 StringAppendF(&result, "EGL implementation : %s\n", extensions.getEGLVersion());
1400 StringAppendF(&result, "%s\n", extensions.getEGLExtensions());
1401 StringAppendF(&result, "GLES: %s, %s, %s\n", extensions.getVendor(), extensions.getRenderer(),
1402 extensions.getVersion());
1403 StringAppendF(&result, "%s\n", extensions.getExtensions());
1404 StringAppendF(&result, "RenderEngine supports protected context: %d\n",
1405 supportsProtectedContent());
1406 StringAppendF(&result, "RenderEngine is in protected context: %d\n", mInProtectedContext);
Leon Scroggins III9f3072c2021-03-22 10:42:47 -04001407 StringAppendF(&result, "RenderEngine shaders cached since last dump/primeCache: %d\n",
1408 mSkSLCacheMonitor.shadersCachedSinceLastCall());
Ana Krulec1d12b3b2021-01-27 16:49:51 -08001409
Derek Sollenberger0e6d3562021-04-07 19:34:39 -04001410 std::vector<ResourcePair> cpuResourceMap = {
1411 {"skia/sk_resource_cache/bitmap_", "Bitmaps"},
1412 {"skia/sk_resource_cache/rrect-blur_", "Masks"},
1413 {"skia/sk_resource_cache/rects-blur_", "Masks"},
1414 {"skia/sk_resource_cache/tessellated", "Shadows"},
1415 {"skia", "Other"},
1416 };
1417 SkiaMemoryReporter cpuReporter(cpuResourceMap, false);
1418 SkGraphics::DumpMemoryStatistics(&cpuReporter);
1419 StringAppendF(&result, "Skia CPU Caches: ");
1420 cpuReporter.logTotals(result);
1421 cpuReporter.logOutput(result);
1422
Ana Krulec1d12b3b2021-01-27 16:49:51 -08001423 {
1424 std::lock_guard<std::mutex> lock(mRenderingMutex);
Derek Sollenberger0e6d3562021-04-07 19:34:39 -04001425
1426 std::vector<ResourcePair> gpuResourceMap = {
1427 {"texture_renderbuffer", "Texture/RenderBuffer"},
1428 {"texture", "Texture"},
1429 {"gr_text_blob_cache", "Text"},
1430 {"skia", "Other"},
1431 };
1432 SkiaMemoryReporter gpuReporter(gpuResourceMap, true);
1433 mGrContext->dumpMemoryStatistics(&gpuReporter);
1434 StringAppendF(&result, "Skia's GPU Caches: ");
1435 gpuReporter.logTotals(result);
1436 gpuReporter.logOutput(result);
1437 StringAppendF(&result, "Skia's Wrapped Objects:\n");
1438 gpuReporter.logOutput(result, true);
1439
Alec Mouria90a5702021-04-16 16:36:21 +00001440 StringAppendF(&result, "RenderEngine tracked buffers: %zu\n",
1441 mGraphicBufferExternalRefs.size());
1442 StringAppendF(&result, "Dumping buffer ids...\n");
1443 for (const auto& [id, refCounts] : mGraphicBufferExternalRefs) {
1444 StringAppendF(&result, "- 0x%" PRIx64 " - %d refs \n", id, refCounts);
1445 }
Derek Sollenberger0e6d3562021-04-07 19:34:39 -04001446 StringAppendF(&result, "RenderEngine AHB/BackendTexture cache size: %zu\n",
1447 mTextureCache.size());
Ana Krulec1d12b3b2021-01-27 16:49:51 -08001448 StringAppendF(&result, "Dumping buffer ids...\n");
1449 // TODO(178539829): It would be nice to know which layer these are coming from and what
1450 // the texture sizes are.
1451 for (const auto& [id, unused] : mTextureCache) {
1452 StringAppendF(&result, "- 0x%" PRIx64 "\n", id);
1453 }
1454 StringAppendF(&result, "\n");
Derek Sollenberger0e6d3562021-04-07 19:34:39 -04001455
1456 SkiaMemoryReporter gpuProtectedReporter(gpuResourceMap, true);
Derek Sollenberger80a7a762021-04-14 10:22:58 -04001457 if (mProtectedGrContext) {
1458 mProtectedGrContext->dumpMemoryStatistics(&gpuProtectedReporter);
1459 }
Derek Sollenberger0e6d3562021-04-07 19:34:39 -04001460 StringAppendF(&result, "Skia's GPU Protected Caches: ");
1461 gpuProtectedReporter.logTotals(result);
1462 gpuProtectedReporter.logOutput(result);
1463 StringAppendF(&result, "Skia's Protected Wrapped Objects:\n");
1464 gpuProtectedReporter.logOutput(result, true);
1465
Ana Krulec1d12b3b2021-01-27 16:49:51 -08001466 StringAppendF(&result, "\n");
1467 StringAppendF(&result, "RenderEngine runtime effects: %zu\n", mRuntimeEffects.size());
1468 for (const auto& [linearEffect, unused] : mRuntimeEffects) {
1469 StringAppendF(&result, "- inputDataspace: %s\n",
1470 dataspaceDetails(
1471 static_cast<android_dataspace>(linearEffect.inputDataspace))
1472 .c_str());
1473 StringAppendF(&result, "- outputDataspace: %s\n",
1474 dataspaceDetails(
1475 static_cast<android_dataspace>(linearEffect.outputDataspace))
1476 .c_str());
1477 StringAppendF(&result, "undoPremultipliedAlpha: %s\n",
1478 linearEffect.undoPremultipliedAlpha ? "true" : "false");
1479 }
1480 }
1481 StringAppendF(&result, "\n");
1482}
1483
John Reck67b1e2b2020-08-26 13:17:24 -07001484} // namespace skia
1485} // namespace renderengine
Galia Peycheva6c460652020-11-03 19:42:42 +01001486} // namespace android