blob: 967cb6ffcde5efd59dfaa2453a529c4439c4809f [file] [log] [blame]
John Reck23b797a2014-01-03 18:08:34 -08001/*
2 * Copyright (C) 2014 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
John Reck23b797a2014-01-03 18:08:34 -080017#include "CanvasContext.h"
18
John Reck998a6d82014-08-28 15:35:53 -070019#include <algorithm>
John Reck4f02bf42014-01-03 18:09:17 -080020#include <private/hwui/DrawGlInfo.h>
John Reck23b797a2014-01-03 18:08:34 -080021#include <strings.h>
22
John Reck3b202512014-06-23 13:13:08 -070023#include "EglManager.h"
John Reck4f02bf42014-01-03 18:09:17 -080024#include "RenderThread.h"
John Reck119907c2014-08-14 09:02:01 -070025#include "../AnimationContext.h"
John Reck23b797a2014-01-03 18:08:34 -080026#include "../Caches.h"
John Reck19b6bcf2014-02-14 20:03:38 -080027#include "../DeferredLayerUpdater.h"
John Reck3b202512014-06-23 13:13:08 -070028#include "../RenderState.h"
John Reck19b6bcf2014-02-14 20:03:38 -080029#include "../LayerRenderer.h"
John Reck4f02bf42014-01-03 18:09:17 -080030#include "../OpenGLRenderer.h"
John Reck23b797a2014-01-03 18:08:34 -080031#include "../Stencil.h"
32
John Reckf47a5942014-06-30 16:20:04 -070033#define TRIM_MEMORY_COMPLETE 80
34#define TRIM_MEMORY_UI_HIDDEN 20
35
John Reck23b797a2014-01-03 18:08:34 -080036namespace android {
37namespace uirenderer {
38namespace renderthread {
39
John Reck119907c2014-08-14 09:02:01 -070040CanvasContext::CanvasContext(RenderThread& thread, bool translucent,
41 RenderNode* rootRenderNode, IContextFactory* contextFactory)
John Reck3b202512014-06-23 13:13:08 -070042 : mRenderThread(thread)
43 , mEglManager(thread.eglManager())
John Reck4f02bf42014-01-03 18:09:17 -080044 , mEglSurface(EGL_NO_SURFACE)
45 , mDirtyRegionsEnabled(false)
46 , mOpaque(!translucent)
John Reck3b202512014-06-23 13:13:08 -070047 , mCanvas(NULL)
John Recke45b1fd2014-04-15 09:50:16 -070048 , mHaveNewSurface(false)
49 , mRootRenderNode(rootRenderNode) {
John Reck119907c2014-08-14 09:02:01 -070050 mAnimationContext = contextFactory->createAnimationContext(mRenderThread.timeLord());
John Reck23b797a2014-01-03 18:08:34 -080051}
52
53CanvasContext::~CanvasContext() {
John Reck17035b02014-09-03 07:39:53 -070054 destroy();
John Reck119907c2014-08-14 09:02:01 -070055 delete mAnimationContext;
John Reck4f02bf42014-01-03 18:09:17 -080056}
57
John Reck17035b02014-09-03 07:39:53 -070058void CanvasContext::destroy() {
59 stopDrawing();
60 freePrefetechedLayers();
61 destroyHardwareResources();
John Reck4f02bf42014-01-03 18:09:17 -080062 if (mCanvas) {
63 delete mCanvas;
64 mCanvas = 0;
65 }
John Reck23b797a2014-01-03 18:08:34 -080066 setSurface(NULL);
67}
68
John Recka5dda642014-05-22 15:43:54 -070069void CanvasContext::setSurface(ANativeWindow* window) {
70 mNativeWindow = window;
71
John Reck23b797a2014-01-03 18:08:34 -080072 if (mEglSurface != EGL_NO_SURFACE) {
John Reck3b202512014-06-23 13:13:08 -070073 mEglManager.destroySurface(mEglSurface);
John Reck23b797a2014-01-03 18:08:34 -080074 mEglSurface = EGL_NO_SURFACE;
75 }
76
77 if (window) {
John Reck3b202512014-06-23 13:13:08 -070078 mEglSurface = mEglManager.createSurface(window);
John Reck23b797a2014-01-03 18:08:34 -080079 }
80
81 if (mEglSurface != EGL_NO_SURFACE) {
John Reck3b202512014-06-23 13:13:08 -070082 mDirtyRegionsEnabled = mEglManager.enableDirtyRegions(mEglSurface);
John Reck4f02bf42014-01-03 18:09:17 -080083 mHaveNewSurface = true;
John Reckdbc9a862014-04-17 20:25:13 -070084 makeCurrent();
John Reck368cdd82014-05-07 13:11:00 -070085 } else {
86 mRenderThread.removeFrameCallback(this);
John Reck23b797a2014-01-03 18:08:34 -080087 }
John Reck23b797a2014-01-03 18:08:34 -080088}
89
John Reck4f02bf42014-01-03 18:09:17 -080090void CanvasContext::swapBuffers() {
John Reck3b202512014-06-23 13:13:08 -070091 mEglManager.swapBuffers(mEglSurface);
John Reck4f02bf42014-01-03 18:09:17 -080092 mHaveNewSurface = false;
John Reck23b797a2014-01-03 18:08:34 -080093}
94
John Reckf7d9c1d2014-04-09 10:01:03 -070095void CanvasContext::requireSurface() {
96 LOG_ALWAYS_FATAL_IF(mEglSurface == EGL_NO_SURFACE,
97 "requireSurface() called but no surface set!");
John Reckdbc9a862014-04-17 20:25:13 -070098 makeCurrent();
John Reck23b797a2014-01-03 18:08:34 -080099}
100
John Recka5dda642014-05-22 15:43:54 -0700101bool CanvasContext::initialize(ANativeWindow* window) {
John Reck4f02bf42014-01-03 18:09:17 -0800102 if (mCanvas) return false;
103 setSurface(window);
John Reck3b202512014-06-23 13:13:08 -0700104 mCanvas = new OpenGLRenderer(mRenderThread.renderState());
John Reck4f02bf42014-01-03 18:09:17 -0800105 mCanvas->initProperties();
106 return true;
107}
108
John Recka5dda642014-05-22 15:43:54 -0700109void CanvasContext::updateSurface(ANativeWindow* window) {
John Reck4f02bf42014-01-03 18:09:17 -0800110 setSurface(window);
John Reckf7d9c1d2014-04-09 10:01:03 -0700111}
112
John Recka5dda642014-05-22 15:43:54 -0700113void CanvasContext::pauseSurface(ANativeWindow* window) {
John Reck16617152014-09-02 15:44:14 -0700114 stopDrawing();
John Reck4f02bf42014-01-03 18:09:17 -0800115}
116
Chris Craik058fc642014-07-23 18:19:28 -0700117void CanvasContext::setup(int width, int height, const Vector3& lightCenter, float lightRadius,
118 uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) {
John Reck4f02bf42014-01-03 18:09:17 -0800119 if (!mCanvas) return;
120 mCanvas->setViewport(width, height);
Chris Craik058fc642014-07-23 18:19:28 -0700121 mCanvas->initLight(lightCenter, lightRadius, ambientShadowAlpha, spotShadowAlpha);
John Reck4f02bf42014-01-03 18:09:17 -0800122}
123
John Reck63a06672014-05-07 13:45:54 -0700124void CanvasContext::setOpaque(bool opaque) {
125 mOpaque = opaque;
126}
127
John Reck860d1552014-04-11 19:15:05 -0700128void CanvasContext::makeCurrent() {
John Reckdbc9a862014-04-17 20:25:13 -0700129 // TODO: Figure out why this workaround is needed, see b/13913604
130 // In the meantime this matches the behavior of GLRenderer, so it is not a regression
John Reck3b202512014-06-23 13:13:08 -0700131 mHaveNewSurface |= mEglManager.makeCurrent(mEglSurface);
John Reck860d1552014-04-11 19:15:05 -0700132}
133
John Reck68bfe0a2014-06-24 15:34:58 -0700134void CanvasContext::processLayerUpdate(DeferredLayerUpdater* layerUpdater) {
135 bool success = layerUpdater->apply();
John Reckd72e0a32014-05-29 18:56:11 -0700136 LOG_ALWAYS_FATAL_IF(!success, "Failed to update layer!");
137 if (layerUpdater->backingLayer()->deferredUpdateScheduled) {
138 mCanvas->pushLayerUpdate(layerUpdater->backingLayer());
John Reck19b6bcf2014-02-14 20:03:38 -0800139 }
140}
141
John Recke45b1fd2014-04-15 09:50:16 -0700142void CanvasContext::prepareTree(TreeInfo& info) {
John Reckf9be7792014-05-02 18:21:16 -0700143 mRenderThread.removeFrameCallback(this);
John Reck18f16e62014-05-02 16:46:41 -0700144
John Recke4267ea2014-06-03 15:53:15 -0700145 info.damageAccumulator = &mDamageAccumulator;
John Reck25fbb3f2014-06-12 13:46:45 -0700146 info.renderer = mCanvas;
John Reck998a6d82014-08-28 15:35:53 -0700147 if (mPrefetechedLayers.size() && info.mode == TreeInfo::MODE_FULL) {
148 info.canvasContext = this;
149 }
John Reck119907c2014-08-14 09:02:01 -0700150 mAnimationContext->startFrame();
John Recke45b1fd2014-04-15 09:50:16 -0700151 mRootRenderNode->prepareTree(info);
John Reck119907c2014-08-14 09:02:01 -0700152 mAnimationContext->runRemainingAnimations(info);
John Recke45b1fd2014-04-15 09:50:16 -0700153
John Reck998a6d82014-08-28 15:35:53 -0700154 if (info.canvasContext) {
155 freePrefetechedLayers();
156 }
157
John Recka5dda642014-05-22 15:43:54 -0700158 int runningBehind = 0;
159 // TODO: This query is moderately expensive, investigate adding some sort
160 // of fast-path based off when we last called eglSwapBuffers() as well as
161 // last vsync time. Or something.
162 mNativeWindow->query(mNativeWindow.get(),
163 NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND, &runningBehind);
164 info.out.canDrawThisFrame = !runningBehind;
165
166 if (info.out.hasAnimations || !info.out.canDrawThisFrame) {
John Reckcd028f32014-06-24 08:44:29 -0700167 if (!info.out.requiresUiRedraw) {
John Reckf9be7792014-05-02 18:21:16 -0700168 // If animationsNeedsRedraw is set don't bother posting for an RT anim
169 // as we will just end up fighting the UI thread.
170 mRenderThread.postFrameCallback(this);
171 }
John Recke45b1fd2014-04-15 09:50:16 -0700172 }
173}
174
John Reckf47a5942014-06-30 16:20:04 -0700175void CanvasContext::stopDrawing() {
176 mRenderThread.removeFrameCallback(this);
177}
178
John Recka5dda642014-05-22 15:43:54 -0700179void CanvasContext::notifyFramePending() {
180 ATRACE_CALL();
181 mRenderThread.pushBackFrameCallback(this);
182}
183
John Recke4267ea2014-06-03 15:53:15 -0700184void CanvasContext::draw() {
John Reck4f02bf42014-01-03 18:09:17 -0800185 LOG_ALWAYS_FATAL_IF(!mCanvas || mEglSurface == EGL_NO_SURFACE,
Chris Craika7090e02014-06-20 16:01:00 -0700186 "drawRenderNode called on a context with no canvas or surface!");
John Reck4f02bf42014-01-03 18:09:17 -0800187
John Reckfe5e7b72014-05-23 17:42:28 -0700188 profiler().markPlaybackStart();
189
John Recke4267ea2014-06-03 15:53:15 -0700190 SkRect dirty;
191 mDamageAccumulator.finish(&dirty);
192
John Reck4f02bf42014-01-03 18:09:17 -0800193 EGLint width, height;
John Reck3b202512014-06-23 13:13:08 -0700194 mEglManager.beginFrame(mEglSurface, &width, &height);
John Reck4f02bf42014-01-03 18:09:17 -0800195 if (width != mCanvas->getViewportWidth() || height != mCanvas->getViewportHeight()) {
196 mCanvas->setViewport(width, height);
John Recke4267ea2014-06-03 15:53:15 -0700197 dirty.setEmpty();
John Reck4f02bf42014-01-03 18:09:17 -0800198 } else if (!mDirtyRegionsEnabled || mHaveNewSurface) {
John Recke4267ea2014-06-03 15:53:15 -0700199 dirty.setEmpty();
John Reckfe5e7b72014-05-23 17:42:28 -0700200 } else {
John Reck5cdb8f92014-07-17 11:00:36 -0700201 if (!dirty.isEmpty() && !dirty.intersect(0, 0, width, height)) {
John Reck0a973302014-07-16 13:29:45 -0700202 ALOGW("Dirty " RECT_STRING " doesn't intersect with 0 0 %d %d ?",
203 SK_RECT_ARGS(dirty), width, height);
204 dirty.setEmpty();
205 }
John Recke4267ea2014-06-03 15:53:15 -0700206 profiler().unionDirty(&dirty);
John Reck4f02bf42014-01-03 18:09:17 -0800207 }
208
209 status_t status;
John Recke4267ea2014-06-03 15:53:15 -0700210 if (!dirty.isEmpty()) {
211 status = mCanvas->prepareDirty(dirty.fLeft, dirty.fTop,
212 dirty.fRight, dirty.fBottom, mOpaque);
John Reck4f02bf42014-01-03 18:09:17 -0800213 } else {
214 status = mCanvas->prepare(mOpaque);
215 }
216
217 Rect outBounds;
Chris Craika7090e02014-06-20 16:01:00 -0700218 status |= mCanvas->drawRenderNode(mRootRenderNode.get(), outBounds);
John Reck4f02bf42014-01-03 18:09:17 -0800219
John Reckfe5e7b72014-05-23 17:42:28 -0700220 profiler().draw(mCanvas);
John Reck4f02bf42014-01-03 18:09:17 -0800221
222 mCanvas->finish();
223
John Reckfe5e7b72014-05-23 17:42:28 -0700224 profiler().markPlaybackEnd();
225
John Reck4f02bf42014-01-03 18:09:17 -0800226 if (status & DrawGlInfo::kStatusDrew) {
227 swapBuffers();
228 }
John Reckfe5e7b72014-05-23 17:42:28 -0700229
230 profiler().finishFrame();
John Reck4f02bf42014-01-03 18:09:17 -0800231}
232
John Recke45b1fd2014-04-15 09:50:16 -0700233// Called by choreographer to do an RT-driven animation
John Reck18f16e62014-05-02 16:46:41 -0700234void CanvasContext::doFrame() {
John Reck368cdd82014-05-07 13:11:00 -0700235 if (CC_UNLIKELY(!mCanvas || mEglSurface == EGL_NO_SURFACE)) {
236 return;
237 }
238
John Recke45b1fd2014-04-15 09:50:16 -0700239 ATRACE_CALL();
240
John Reckfe5e7b72014-05-23 17:42:28 -0700241 profiler().startFrame();
242
John Reck3b202512014-06-23 13:13:08 -0700243 TreeInfo info(TreeInfo::MODE_RT_ONLY, mRenderThread.renderState());
John Recke45b1fd2014-04-15 09:50:16 -0700244 prepareTree(info);
John Recka5dda642014-05-22 15:43:54 -0700245 if (info.out.canDrawThisFrame) {
John Recke4267ea2014-06-03 15:53:15 -0700246 draw();
John Recka5dda642014-05-22 15:43:54 -0700247 }
John Recke45b1fd2014-04-15 09:50:16 -0700248}
249
John Reck3b202512014-06-23 13:13:08 -0700250void CanvasContext::invokeFunctor(RenderThread& thread, Functor* functor) {
John Reckd3d8daf2014-04-10 15:00:13 -0700251 ATRACE_CALL();
John Reck0d1f6342014-03-28 20:30:27 -0700252 DrawGlInfo::Mode mode = DrawGlInfo::kModeProcessNoContext;
John Reck3b202512014-06-23 13:13:08 -0700253 if (thread.eglManager().hasEglContext()) {
254 thread.eglManager().requireGlContext();
John Reck0d1f6342014-03-28 20:30:27 -0700255 mode = DrawGlInfo::kModeProcess;
256 }
John Reck6f07a0d2014-04-16 21:31:25 -0700257
John Reck3b202512014-06-23 13:13:08 -0700258 thread.renderState().invokeFunctor(functor, mode, NULL);
John Reck23b797a2014-01-03 18:08:34 -0800259}
260
John Reck998a6d82014-08-28 15:35:53 -0700261void CanvasContext::markLayerInUse(RenderNode* node) {
262 if (mPrefetechedLayers.erase(node)) {
263 node->decStrong(0);
264 }
265}
266
267static void destroyPrefetechedNode(RenderNode* node) {
268 ALOGW("Incorrectly called buildLayer on View: %s, destroying layer...", node->getName());
269 node->destroyHardwareResources();
270 node->decStrong(0);
271}
272
273void CanvasContext::freePrefetechedLayers() {
274 if (mPrefetechedLayers.size()) {
275 requireGlContext();
276 std::for_each(mPrefetechedLayers.begin(), mPrefetechedLayers.end(), destroyPrefetechedNode);
277 mPrefetechedLayers.clear();
278 }
279}
280
John Reck3e824952014-08-20 10:08:39 -0700281void CanvasContext::buildLayer(RenderNode* node) {
282 ATRACE_CALL();
283 if (!mEglManager.hasEglContext() || !mCanvas) {
284 return;
285 }
286 requireGlContext();
287 // buildLayer() will leave the tree in an unknown state, so we must stop drawing
288 stopDrawing();
289
290 TreeInfo info(TreeInfo::MODE_FULL, mRenderThread.renderState());
John Reck3e824952014-08-20 10:08:39 -0700291 info.damageAccumulator = &mDamageAccumulator;
292 info.renderer = mCanvas;
John Reck9eb9f6f2014-08-21 11:23:05 -0700293 info.runAnimations = false;
John Reck3e824952014-08-20 10:08:39 -0700294 node->prepareTree(info);
295 SkRect ignore;
296 mDamageAccumulator.finish(&ignore);
297 // Tickle the GENERIC property on node to mark it as dirty for damaging
298 // purposes when the frame is actually drawn
299 node->setPropertyFieldsDirty(RenderNode::GENERIC);
300
301 mCanvas->flushLayerUpdates();
John Reck998a6d82014-08-28 15:35:53 -0700302
303 node->incStrong(0);
304 mPrefetechedLayers.insert(node);
John Reck3e824952014-08-20 10:08:39 -0700305}
306
John Reck19b6bcf2014-02-14 20:03:38 -0800307bool CanvasContext::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap) {
308 requireGlContext();
John Reck68bfe0a2014-06-24 15:34:58 -0700309 layer->apply();
John Reck3b202512014-06-23 13:13:08 -0700310 return LayerRenderer::copyLayer(mRenderThread.renderState(), layer->backingLayer(), bitmap);
John Reck19b6bcf2014-02-14 20:03:38 -0800311}
312
John Reckf47a5942014-06-30 16:20:04 -0700313void CanvasContext::destroyHardwareResources() {
314 stopDrawing();
John Reck3b202512014-06-23 13:13:08 -0700315 if (mEglManager.hasEglContext()) {
John Recke1628b72014-05-23 15:11:19 -0700316 requireGlContext();
John Reckdff99572014-08-29 09:59:43 -0700317 freePrefetechedLayers();
John Reckdcba6722014-07-08 13:59:49 -0700318 mRootRenderNode->destroyHardwareResources();
John Reckf47a5942014-06-30 16:20:04 -0700319 Caches::getInstance().flush(Caches::kFlushMode_Layers);
320 }
321}
322
323void CanvasContext::trimMemory(RenderThread& thread, int level) {
324 // No context means nothing to free
325 if (!thread.eglManager().hasEglContext()) return;
326
John Reck3c2b7fa2014-07-07 09:16:54 -0700327 thread.eglManager().requireGlContext();
John Reckf47a5942014-06-30 16:20:04 -0700328 if (level >= TRIM_MEMORY_COMPLETE) {
329 Caches::getInstance().flush(Caches::kFlushMode_Full);
330 thread.eglManager().destroy();
331 } else if (level >= TRIM_MEMORY_UI_HIDDEN) {
332 Caches::getInstance().flush(Caches::kFlushMode_Moderate);
John Recke1628b72014-05-23 15:11:19 -0700333 }
334}
335
John Reckfc53ef272014-02-11 10:40:25 -0800336void CanvasContext::runWithGlContext(RenderTask* task) {
John Reck19b6bcf2014-02-14 20:03:38 -0800337 requireGlContext();
338 task->run();
339}
340
John Reck1949e792014-04-08 15:18:56 -0700341Layer* CanvasContext::createRenderLayer(int width, int height) {
John Reckf7d9c1d2014-04-09 10:01:03 -0700342 requireSurface();
John Reck3b202512014-06-23 13:13:08 -0700343 return LayerRenderer::createRenderLayer(mRenderThread.renderState(), width, height);
John Reck1949e792014-04-08 15:18:56 -0700344}
345
346Layer* CanvasContext::createTextureLayer() {
John Reckf7d9c1d2014-04-09 10:01:03 -0700347 requireSurface();
John Reck3b202512014-06-23 13:13:08 -0700348 return LayerRenderer::createTextureLayer(mRenderThread.renderState());
John Reck1949e792014-04-08 15:18:56 -0700349}
350
John Reck19b6bcf2014-02-14 20:03:38 -0800351void CanvasContext::requireGlContext() {
John Reckf47a5942014-06-30 16:20:04 -0700352 mEglManager.requireGlContext();
John Reckfc53ef272014-02-11 10:40:25 -0800353}
354
John Reck3b202512014-06-23 13:13:08 -0700355void CanvasContext::setTextureAtlas(RenderThread& thread,
356 const sp<GraphicBuffer>& buffer, int64_t* map, size_t mapSize) {
357 thread.eglManager().setTextureAtlas(buffer, map, mapSize);
John Reck66f0be62014-05-13 13:39:31 -0700358}
359
John Reck23b797a2014-01-03 18:08:34 -0800360} /* namespace renderthread */
361} /* namespace uirenderer */
362} /* namespace android */