blob: 63c36f85be20af3b6ec89822733fc7a9136f04bc [file] [log] [blame]
Stan Iliev500a0c32016-10-26 10:30:09 -04001/*
2 * Copyright (C) 2016 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#include "SkiaOpenGLPipeline.h"
18
Alec Mouri3afb3972022-05-27 22:03:11 +000019#include <GrBackendSurface.h>
20#include <SkBlendMode.h>
21#include <SkImageInfo.h>
22#include <cutils/properties.h>
rnleece9762b2021-05-21 15:40:53 -070023#include <gui/TraceUtils.h>
Alec Mouri3afb3972022-05-27 22:03:11 +000024#include <strings.h>
25
Stan Iliev500a0c32016-10-26 10:30:09 -040026#include "DeferredLayerUpdater.h"
Alec Mouri3afb3972022-05-27 22:03:11 +000027#include "FrameInfo.h"
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050028#include "LayerDrawable.h"
Fedor Kudasov90df0562019-06-19 11:41:34 +010029#include "LightingInfo.h"
Matt Sarettcf2c05c2016-10-26 11:03:23 -040030#include "SkiaPipeline.h"
31#include "SkiaProfileRenderer.h"
John Reck1bcacfd2017-11-03 10:12:19 -070032#include "hwui/Bitmap.h"
Derek Sollenberger28a4d992018-09-20 13:37:24 -040033#include "private/hwui/DrawGlInfo.h"
John Reck1bcacfd2017-11-03 10:12:19 -070034#include "renderstate/RenderState.h"
35#include "renderthread/EglManager.h"
36#include "renderthread/Frame.h"
Alec Mouri3afb3972022-05-27 22:03:11 +000037#include "renderthread/IRenderPipeline.h"
John Reckd9d7f122018-05-03 14:40:56 -070038#include "utils/GLUtils.h"
Stan Iliev500a0c32016-10-26 10:30:09 -040039
Stan Iliev500a0c32016-10-26 10:30:09 -040040using namespace android::uirenderer::renderthread;
41
42namespace android {
43namespace uirenderer {
44namespace skiapipeline {
45
46SkiaOpenGLPipeline::SkiaOpenGLPipeline(RenderThread& thread)
Derek Sollenberger5a5a6482018-09-19 13:52:13 -040047 : SkiaPipeline(thread), mEglManager(thread.eglManager()) {
48 thread.renderState().registerContextCallback(this);
49}
50
51SkiaOpenGLPipeline::~SkiaOpenGLPipeline() {
52 mRenderThread.renderState().removeContextCallback(this);
53}
Stan Iliev500a0c32016-10-26 10:30:09 -040054
55MakeCurrentResult SkiaOpenGLPipeline::makeCurrent() {
Shih-Hsin Li4a012f52021-09-21 18:11:23 -070056 bool wasSurfaceless = mEglManager.isCurrent(EGL_NO_SURFACE);
57
Derek Sollenberger289380f2022-08-30 14:24:22 -040058 // In case the surface was destroyed (e.g. a previous trimMemory call) we
59 // need to recreate it here.
60 if (!isSurfaceReady() && mNativeWindow) {
61 setSurface(mNativeWindow.get(), mSwapBehavior);
62 }
63
Stan Iliev500a0c32016-10-26 10:30:09 -040064 EGLint error = 0;
65 if (!mEglManager.makeCurrent(mEglSurface, &error)) {
66 return MakeCurrentResult::AlreadyCurrent;
67 }
Shih-Hsin Li4a012f52021-09-21 18:11:23 -070068
69 // Make sure read/draw buffer state of default framebuffer is GL_BACK. Vendor implementations
70 // disagree on the draw/read buffer state if the default framebuffer transitions from a surface
71 // to EGL_NO_SURFACE and vice-versa. There was a related discussion within Khronos on this topic.
72 // See https://cvs.khronos.org/bugzilla/show_bug.cgi?id=13534.
73 // The discussion was not resolved with a clear consensus
74 if (error == 0 && wasSurfaceless && mEglSurface != EGL_NO_SURFACE) {
75 GLint curReadFB = 0;
76 GLint curDrawFB = 0;
77 glGetIntegerv(GL_READ_FRAMEBUFFER_BINDING, &curReadFB);
78 glGetIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, &curDrawFB);
79
80 GLint buffer = GL_NONE;
81 glBindFramebuffer(GL_FRAMEBUFFER, 0);
82 glGetIntegerv(GL_DRAW_BUFFER0, &buffer);
83 if (buffer == GL_NONE) {
84 const GLenum drawBuffer = GL_BACK;
85 glDrawBuffers(1, &drawBuffer);
86 }
87
88 glGetIntegerv(GL_READ_BUFFER, &buffer);
89 if (buffer == GL_NONE) {
90 glReadBuffer(GL_BACK);
91 }
92
93 glBindFramebuffer(GL_READ_FRAMEBUFFER, curReadFB);
94 glBindFramebuffer(GL_DRAW_FRAMEBUFFER, curDrawFB);
95
96 GL_CHECKPOINT(LOW);
97 }
98
Stan Iliev500a0c32016-10-26 10:30:09 -040099 return error ? MakeCurrentResult::Failed : MakeCurrentResult::Succeeded;
100}
101
102Frame SkiaOpenGLPipeline::getFrame() {
103 LOG_ALWAYS_FATAL_IF(mEglSurface == EGL_NO_SURFACE,
John Reck1bcacfd2017-11-03 10:12:19 -0700104 "drawRenderNode called on a context with no surface!");
Stan Iliev500a0c32016-10-26 10:30:09 -0400105 return mEglManager.beginFrame(mEglSurface);
106}
107
Alec Mouri3afb3972022-05-27 22:03:11 +0000108IRenderPipeline::DrawResult SkiaOpenGLPipeline::draw(
109 const Frame& frame, const SkRect& screenDirty, const SkRect& dirty,
110 const LightGeometry& lightGeometry, LayerUpdateQueue* layerUpdateQueue,
111 const Rect& contentDrawBounds, bool opaque, const LightInfo& lightInfo,
112 const std::vector<sp<RenderNode>>& renderNodes, FrameInfoVisualizer* profiler) {
John Reck76005182021-06-09 22:43:05 -0400113 if (!isCapturingSkp()) {
114 mEglManager.damageFrame(frame, dirty);
115 }
Stan Iliev500a0c32016-10-26 10:30:09 -0400116
Peiyong Lin1f6aa122018-09-10 16:28:08 -0700117 SkColorType colorType = getSurfaceColorType();
Stan Iliev500a0c32016-10-26 10:30:09 -0400118 // setup surface for fbo0
Greg Danielac2d2322017-07-12 11:30:15 -0400119 GrGLFramebufferInfo fboInfo;
120 fboInfo.fFBOID = 0;
Peiyong Lin1f6aa122018-09-10 16:28:08 -0700121 if (colorType == kRGBA_F16_SkColorType) {
Greg Danielc9da8e82018-03-21 10:50:24 -0400122 fboInfo.fFormat = GL_RGBA16F;
Peiyong Lin1f6aa122018-09-10 16:28:08 -0700123 } else if (colorType == kN32_SkColorType) {
124 // Note: The default preference of pixel format is RGBA_8888, when other
125 // pixel format is available, we should branch out and do more check.
Greg Danielc9da8e82018-03-21 10:50:24 -0400126 fboInfo.fFormat = GL_RGBA8;
John Reckb36bfdd2020-07-23 13:47:49 -0700127 } else if (colorType == kRGBA_1010102_SkColorType) {
128 fboInfo.fFormat = GL_RGB10_A2;
Leon Scroggins IIIe157ee82021-11-30 14:12:42 -0500129 } else if (colorType == kAlpha_8_SkColorType) {
130 fboInfo.fFormat = GL_R8;
Peiyong Lin1f6aa122018-09-10 16:28:08 -0700131 } else {
132 LOG_ALWAYS_FATAL("Unsupported color type.");
Greg Danielc9da8e82018-03-21 10:50:24 -0400133 }
Greg Danielac2d2322017-07-12 11:30:15 -0400134
Greg Danielc9da8e82018-03-21 10:50:24 -0400135 GrBackendRenderTarget backendRT(frame.width(), frame.height(), 0, STENCIL_BUFFER_SIZE, fboInfo);
Stan Iliev500a0c32016-10-26 10:30:09 -0400136
137 SkSurfaceProps props(0, kUnknown_SkPixelGeometry);
138
139 SkASSERT(mRenderThread.getGrContext() != nullptr);
140 sk_sp<SkSurface> surface(SkSurface::MakeFromBackendRenderTarget(
Derek Sollenberger25833d22019-01-14 13:55:55 -0500141 mRenderThread.getGrContext(), backendRT, this->getSurfaceOrigin(), colorType,
Derek Sollenbergerd01b5912018-10-19 15:55:33 -0400142 mSurfaceColorSpace, &props));
Stan Iliev500a0c32016-10-26 10:30:09 -0400143
Fedor Kudasov90df0562019-06-19 11:41:34 +0100144 LightingInfo::updateLighting(lightGeometry, lightInfo);
Greg Danielc4076782019-01-08 16:01:18 -0500145 renderFrame(*layerUpdateQueue, dirty, renderNodes, opaque, contentDrawBounds, surface,
John Reck0fa0cbc2019-04-05 16:57:46 -0700146 SkMatrix::I());
Matt Sarettcf2c05c2016-10-26 11:03:23 -0400147
148 // Draw visual debugging features
John Reck1bcacfd2017-11-03 10:12:19 -0700149 if (CC_UNLIKELY(Properties::showDirtyRegions ||
150 ProfileType::None != Properties::getProfileType())) {
Matt Sarettcf2c05c2016-10-26 11:03:23 -0400151 SkCanvas* profileCanvas = surface->getCanvas();
152 SkiaProfileRenderer profileRenderer(profileCanvas);
153 profiler->draw(profileRenderer);
Matt Sarettcf2c05c2016-10-26 11:03:23 -0400154 }
155
Greg Danielbe2803a2021-02-19 18:32:16 -0500156 {
157 ATRACE_NAME("flush commands");
158 surface->flushAndSubmit();
159 }
160 layerUpdateQueue->clear();
161
Matt Sarett4bda6bf2016-11-07 15:43:41 -0500162 // Log memory statistics
163 if (CC_UNLIKELY(Properties::debugLevel != kDebugDisabled)) {
164 dumpResourceCacheUsage();
165 }
166
Alec Mouri3afb3972022-05-27 22:03:11 +0000167 return {true, IRenderPipeline::DrawResult::kUnknownTime};
Stan Iliev500a0c32016-10-26 10:30:09 -0400168}
169
John Reck1bcacfd2017-11-03 10:12:19 -0700170bool SkiaOpenGLPipeline::swapBuffers(const Frame& frame, bool drew, const SkRect& screenDirty,
171 FrameInfo* currentFrameInfo, bool* requireSwap) {
Stan Iliev500a0c32016-10-26 10:30:09 -0400172 GL_CHECKPOINT(LOW);
173
174 // Even if we decided to cancel the frame, from the perspective of jank
175 // metrics the frame was swapped at this point
176 currentFrameInfo->markSwapBuffers();
177
178 *requireSwap = drew || mEglManager.damageRequiresSwap();
179
180 if (*requireSwap && (CC_UNLIKELY(!mEglManager.swapBuffers(frame, screenDirty)))) {
181 return false;
182 }
183
184 return *requireSwap;
185}
186
Stan Iliev500a0c32016-10-26 10:30:09 -0400187DeferredLayerUpdater* SkiaOpenGLPipeline::createTextureLayer() {
John Reck1e510712018-04-23 08:15:03 -0700188 mRenderThread.requireGlContext();
Stan Iliev564ca3e2018-09-04 22:00:00 +0000189 return new DeferredLayerUpdater(mRenderThread.renderState());
Stan Iliev500a0c32016-10-26 10:30:09 -0400190}
191
Derek Sollenberger5a5a6482018-09-19 13:52:13 -0400192void SkiaOpenGLPipeline::onContextDestroyed() {
193 if (mEglSurface != EGL_NO_SURFACE) {
194 mEglManager.destroySurface(mEglSurface);
195 mEglSurface = EGL_NO_SURFACE;
196 }
197}
198
Stan Iliev500a0c32016-10-26 10:30:09 -0400199void SkiaOpenGLPipeline::onStop() {
200 if (mEglManager.isCurrent(mEglSurface)) {
201 mEglManager.makeCurrent(EGL_NO_SURFACE);
202 }
203}
204
John Reck8ddbc592020-05-07 16:11:18 -0700205bool SkiaOpenGLPipeline::setSurface(ANativeWindow* surface, SwapBehavior swapBehavior) {
Derek Sollenberger289380f2022-08-30 14:24:22 -0400206 mNativeWindow = surface;
207 mSwapBehavior = swapBehavior;
208
Stan Iliev500a0c32016-10-26 10:30:09 -0400209 if (mEglSurface != EGL_NO_SURFACE) {
210 mEglManager.destroySurface(mEglSurface);
211 mEglSurface = EGL_NO_SURFACE;
212 }
213
214 if (surface) {
John Reck1e510712018-04-23 08:15:03 -0700215 mRenderThread.requireGlContext();
Derek Sollenberger1863d942020-02-05 15:41:51 -0500216 auto newSurface = mEglManager.createSurface(surface, mColorMode, mSurfaceColorSpace);
John Reck8e539ca2018-11-15 15:21:29 -0800217 if (!newSurface) {
218 return false;
219 }
220 mEglSurface = newSurface.unwrap();
Stan Iliev500a0c32016-10-26 10:30:09 -0400221 }
222
223 if (mEglSurface != EGL_NO_SURFACE) {
224 const bool preserveBuffer = (swapBehavior != SwapBehavior::kSwap_discardBuffer);
Derek Sollenberger289380f2022-08-30 14:24:22 -0400225 const bool isPreserved = mEglManager.setPreserveBuffer(mEglSurface, preserveBuffer);
226 ALOGE_IF(preserveBuffer != isPreserved, "Unable to match the desired swap behavior.");
Stan Iliev500a0c32016-10-26 10:30:09 -0400227 return true;
228 }
229
230 return false;
231}
232
233bool SkiaOpenGLPipeline::isSurfaceReady() {
234 return CC_UNLIKELY(mEglSurface != EGL_NO_SURFACE);
235}
236
237bool SkiaOpenGLPipeline::isContextReady() {
238 return CC_LIKELY(mEglManager.hasEglContext());
239}
240
241void SkiaOpenGLPipeline::invokeFunctor(const RenderThread& thread, Functor* functor) {
242 DrawGlInfo::Mode mode = DrawGlInfo::kModeProcessNoContext;
243 if (thread.eglManager().hasEglContext()) {
244 mode = DrawGlInfo::kModeProcess;
245 }
246
247 (*functor)(mode, nullptr);
248
249 // If there's no context we don't need to reset as there's no gl state to save/restore
250 if (mode != DrawGlInfo::kModeProcessNoContext) {
251 thread.getGrContext()->resetContext();
252 }
253}
254
Stan Iliev500a0c32016-10-26 10:30:09 -0400255} /* namespace skiapipeline */
256} /* namespace uirenderer */
257} /* namespace android */