John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 1 | /* |
| 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 Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 17 | #include "CanvasContext.h" |
| 18 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 19 | #include "EglManager.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 20 | #include "RenderThread.h" |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 21 | #include "../AnimationContext.h" |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 22 | #include "../Caches.h" |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 23 | #include "../DeferredLayerUpdater.h" |
Chris Craik | 65fe5ee | 2015-01-26 18:06:29 -0800 | [diff] [blame] | 24 | #include "../renderstate/RenderState.h" |
Chris Craik | 96a5c4c | 2015-01-27 15:46:35 -0800 | [diff] [blame] | 25 | #include "../renderstate/Stencil.h" |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 26 | #include "../LayerRenderer.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 27 | #include "../OpenGLRenderer.h" |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 28 | |
Chris Craik | 65fe5ee | 2015-01-26 18:06:29 -0800 | [diff] [blame] | 29 | #include <algorithm> |
| 30 | #include <private/hwui/DrawGlInfo.h> |
| 31 | #include <strings.h> |
| 32 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 33 | #define TRIM_MEMORY_COMPLETE 80 |
| 34 | #define TRIM_MEMORY_UI_HIDDEN 20 |
| 35 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 36 | namespace android { |
| 37 | namespace uirenderer { |
| 38 | namespace renderthread { |
| 39 | |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 40 | CanvasContext::CanvasContext(RenderThread& thread, bool translucent, |
| 41 | RenderNode* rootRenderNode, IContextFactory* contextFactory) |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 42 | : mRenderThread(thread) |
| 43 | , mEglManager(thread.eglManager()) |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 44 | , mOpaque(!translucent) |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 45 | , mAnimationContext(contextFactory->createAnimationContext(mRenderThread.timeLord())) |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 46 | , mRootRenderNode(rootRenderNode) |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame^] | 47 | , mJankTracker(thread.timeLord().frameIntervalNanos()) { |
John Reck | 443a714 | 2014-09-04 17:40:05 -0700 | [diff] [blame] | 48 | mRenderThread.renderState().registerCanvasContext(this); |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 49 | mProfiler.setDensity(mRenderThread.mainDisplayInfo().density); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | CanvasContext::~CanvasContext() { |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 53 | destroy(); |
John Reck | 443a714 | 2014-09-04 17:40:05 -0700 | [diff] [blame] | 54 | mRenderThread.renderState().unregisterCanvasContext(this); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 55 | } |
| 56 | |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 57 | void CanvasContext::destroy() { |
| 58 | stopDrawing(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 59 | setSurface(nullptr); |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 60 | freePrefetechedLayers(); |
| 61 | destroyHardwareResources(); |
John Reck | e2478d4 | 2014-09-03 16:46:05 -0700 | [diff] [blame] | 62 | mAnimationContext->destroy(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 63 | if (mCanvas) { |
| 64 | delete mCanvas; |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 65 | mCanvas = nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 66 | } |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 67 | } |
| 68 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 69 | void CanvasContext::setSurface(ANativeWindow* window) { |
John Reck | fbc8df0 | 2014-11-14 16:18:41 -0800 | [diff] [blame] | 70 | ATRACE_CALL(); |
| 71 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 72 | mNativeWindow = window; |
| 73 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 74 | if (mEglSurface != EGL_NO_SURFACE) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 75 | mEglManager.destroySurface(mEglSurface); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 76 | mEglSurface = EGL_NO_SURFACE; |
| 77 | } |
| 78 | |
| 79 | if (window) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 80 | mEglSurface = mEglManager.createSurface(window); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | if (mEglSurface != EGL_NO_SURFACE) { |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 84 | const bool preserveBuffer = (mSwapBehavior != kSwap_discardBuffer); |
| 85 | mBufferPreserved = mEglManager.setPreserveBuffer(mEglSurface, preserveBuffer); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 86 | mHaveNewSurface = true; |
John Reck | dbc9a86 | 2014-04-17 20:25:13 -0700 | [diff] [blame] | 87 | makeCurrent(); |
John Reck | 368cdd8 | 2014-05-07 13:11:00 -0700 | [diff] [blame] | 88 | } else { |
| 89 | mRenderThread.removeFrameCallback(this); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 90 | } |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 91 | } |
| 92 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 93 | void CanvasContext::swapBuffers() { |
John Reck | 2cdbc7d | 2014-09-17 16:06:36 -0700 | [diff] [blame] | 94 | if (CC_UNLIKELY(!mEglManager.swapBuffers(mEglSurface))) { |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 95 | setSurface(nullptr); |
John Reck | 2cdbc7d | 2014-09-17 16:06:36 -0700 | [diff] [blame] | 96 | } |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 97 | mHaveNewSurface = false; |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 98 | } |
| 99 | |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 100 | void CanvasContext::requireSurface() { |
| 101 | LOG_ALWAYS_FATAL_IF(mEglSurface == EGL_NO_SURFACE, |
| 102 | "requireSurface() called but no surface set!"); |
John Reck | dbc9a86 | 2014-04-17 20:25:13 -0700 | [diff] [blame] | 103 | makeCurrent(); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 104 | } |
| 105 | |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 106 | void CanvasContext::setSwapBehavior(SwapBehavior swapBehavior) { |
| 107 | mSwapBehavior = swapBehavior; |
| 108 | } |
| 109 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 110 | bool CanvasContext::initialize(ANativeWindow* window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 111 | setSurface(window); |
John Reck | 2cdbc7d | 2014-09-17 16:06:36 -0700 | [diff] [blame] | 112 | if (mCanvas) return false; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 113 | mCanvas = new OpenGLRenderer(mRenderThread.renderState()); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 114 | mCanvas->initProperties(); |
| 115 | return true; |
| 116 | } |
| 117 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 118 | void CanvasContext::updateSurface(ANativeWindow* window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 119 | setSurface(window); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 120 | } |
| 121 | |
John Reck | 9fb42f0 | 2014-12-04 13:51:41 -0800 | [diff] [blame] | 122 | bool CanvasContext::pauseSurface(ANativeWindow* window) { |
John Reck | 01a5ea3 | 2014-12-03 13:01:07 -0800 | [diff] [blame] | 123 | return mRenderThread.removeFrameCallback(this); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 124 | } |
| 125 | |
Chris Craik | 284b243 | 2014-09-18 16:05:35 -0700 | [diff] [blame] | 126 | // TODO: don't pass viewport size, it's automatic via EGL |
Andreas Gampe | 64bb413 | 2014-11-22 00:35:09 +0000 | [diff] [blame] | 127 | void CanvasContext::setup(int width, int height, const Vector3& lightCenter, float lightRadius, |
| 128 | uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 129 | if (!mCanvas) return; |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 130 | mCanvas->initLight(lightCenter, lightRadius, ambientShadowAlpha, spotShadowAlpha); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 131 | } |
| 132 | |
John Reck | 63a0667 | 2014-05-07 13:45:54 -0700 | [diff] [blame] | 133 | void CanvasContext::setOpaque(bool opaque) { |
| 134 | mOpaque = opaque; |
| 135 | } |
| 136 | |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 137 | void CanvasContext::makeCurrent() { |
John Reck | dbc9a86 | 2014-04-17 20:25:13 -0700 | [diff] [blame] | 138 | // TODO: Figure out why this workaround is needed, see b/13913604 |
| 139 | // In the meantime this matches the behavior of GLRenderer, so it is not a regression |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 140 | mHaveNewSurface |= mEglManager.makeCurrent(mEglSurface); |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 141 | } |
| 142 | |
John Reck | 68bfe0a | 2014-06-24 15:34:58 -0700 | [diff] [blame] | 143 | void CanvasContext::processLayerUpdate(DeferredLayerUpdater* layerUpdater) { |
| 144 | bool success = layerUpdater->apply(); |
John Reck | d72e0a3 | 2014-05-29 18:56:11 -0700 | [diff] [blame] | 145 | LOG_ALWAYS_FATAL_IF(!success, "Failed to update layer!"); |
| 146 | if (layerUpdater->backingLayer()->deferredUpdateScheduled) { |
| 147 | mCanvas->pushLayerUpdate(layerUpdater->backingLayer()); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 148 | } |
| 149 | } |
| 150 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 151 | void CanvasContext::prepareTree(TreeInfo& info, int64_t* uiFrameInfo) { |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 152 | mRenderThread.removeFrameCallback(this); |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 153 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 154 | mCurrentFrameInfo = &mFrames.next(); |
| 155 | mCurrentFrameInfo->importUiThreadInfo(uiFrameInfo); |
| 156 | mCurrentFrameInfo->markSyncStart(); |
| 157 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 158 | info.damageAccumulator = &mDamageAccumulator; |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 159 | info.renderer = mCanvas; |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 160 | if (mPrefetechedLayers.size() && info.mode == TreeInfo::MODE_FULL) { |
| 161 | info.canvasContext = this; |
| 162 | } |
John Reck | ec845a2 | 2014-09-05 15:23:38 -0700 | [diff] [blame] | 163 | mAnimationContext->startFrame(info.mode); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 164 | mRootRenderNode->prepareTree(info); |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 165 | mAnimationContext->runRemainingAnimations(info); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 166 | |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 167 | if (info.canvasContext) { |
| 168 | freePrefetechedLayers(); |
| 169 | } |
| 170 | |
John Reck | aa95a88 | 2014-11-07 11:02:07 -0800 | [diff] [blame] | 171 | if (CC_UNLIKELY(!mNativeWindow.get())) { |
| 172 | info.out.canDrawThisFrame = false; |
| 173 | return; |
| 174 | } |
| 175 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 176 | int runningBehind = 0; |
| 177 | // TODO: This query is moderately expensive, investigate adding some sort |
| 178 | // of fast-path based off when we last called eglSwapBuffers() as well as |
| 179 | // last vsync time. Or something. |
| 180 | mNativeWindow->query(mNativeWindow.get(), |
| 181 | NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND, &runningBehind); |
| 182 | info.out.canDrawThisFrame = !runningBehind; |
| 183 | |
| 184 | if (info.out.hasAnimations || !info.out.canDrawThisFrame) { |
John Reck | cd028f3 | 2014-06-24 08:44:29 -0700 | [diff] [blame] | 185 | if (!info.out.requiresUiRedraw) { |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 186 | // If animationsNeedsRedraw is set don't bother posting for an RT anim |
| 187 | // as we will just end up fighting the UI thread. |
| 188 | mRenderThread.postFrameCallback(this); |
| 189 | } |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 193 | void CanvasContext::stopDrawing() { |
| 194 | mRenderThread.removeFrameCallback(this); |
| 195 | } |
| 196 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 197 | void CanvasContext::notifyFramePending() { |
| 198 | ATRACE_CALL(); |
| 199 | mRenderThread.pushBackFrameCallback(this); |
| 200 | } |
| 201 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 202 | void CanvasContext::draw() { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 203 | LOG_ALWAYS_FATAL_IF(!mCanvas || mEglSurface == EGL_NO_SURFACE, |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 204 | "drawRenderNode called on a context with no canvas or surface!"); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 205 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 206 | profiler().markPlaybackStart(); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 207 | mCurrentFrameInfo->markIssueDrawCommandsStart(); |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 208 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 209 | SkRect dirty; |
| 210 | mDamageAccumulator.finish(&dirty); |
| 211 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 212 | EGLint width, height; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 213 | mEglManager.beginFrame(mEglSurface, &width, &height); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 214 | if (width != mCanvas->getViewportWidth() || height != mCanvas->getViewportHeight()) { |
| 215 | mCanvas->setViewport(width, height); |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 216 | dirty.setEmpty(); |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 217 | } else if (!mBufferPreserved || mHaveNewSurface) { |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 218 | dirty.setEmpty(); |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 219 | } else { |
John Reck | 5cdb8f9 | 2014-07-17 11:00:36 -0700 | [diff] [blame] | 220 | if (!dirty.isEmpty() && !dirty.intersect(0, 0, width, height)) { |
John Reck | 0a97330 | 2014-07-16 13:29:45 -0700 | [diff] [blame] | 221 | ALOGW("Dirty " RECT_STRING " doesn't intersect with 0 0 %d %d ?", |
| 222 | SK_RECT_ARGS(dirty), width, height); |
| 223 | dirty.setEmpty(); |
| 224 | } |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 225 | profiler().unionDirty(&dirty); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 226 | } |
| 227 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 228 | if (!dirty.isEmpty()) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 229 | mCanvas->prepareDirty(dirty.fLeft, dirty.fTop, |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 230 | dirty.fRight, dirty.fBottom, mOpaque); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 231 | } else { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 232 | mCanvas->prepare(mOpaque); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | Rect outBounds; |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 236 | mCanvas->drawRenderNode(mRootRenderNode.get(), outBounds); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 237 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 238 | profiler().draw(mCanvas); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 239 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 240 | bool drew = mCanvas->finish(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 241 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 242 | profiler().markPlaybackEnd(); |
| 243 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 244 | // Even if we decided to cancel the frame, from the perspective of jank |
| 245 | // metrics the frame was swapped at this point |
| 246 | mCurrentFrameInfo->markSwapBuffers(); |
| 247 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 248 | if (drew) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 249 | swapBuffers(); |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 250 | } else { |
| 251 | mEglManager.cancelFrame(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 252 | } |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 253 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 254 | // TODO: Use a fence for real completion? |
| 255 | mCurrentFrameInfo->markFrameCompleted(); |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame^] | 256 | mJankTracker.addFrame(*mCurrentFrameInfo); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 257 | mRenderThread.jankTracker().addFrame(*mCurrentFrameInfo); |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 258 | profiler().finishFrame(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 259 | } |
| 260 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 261 | // Called by choreographer to do an RT-driven animation |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 262 | void CanvasContext::doFrame() { |
John Reck | 368cdd8 | 2014-05-07 13:11:00 -0700 | [diff] [blame] | 263 | if (CC_UNLIKELY(!mCanvas || mEglSurface == EGL_NO_SURFACE)) { |
| 264 | return; |
| 265 | } |
| 266 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 267 | ATRACE_CALL(); |
| 268 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 269 | profiler().startFrame(); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 270 | int64_t frameInfo[UI_THREAD_FRAME_INFO_SIZE]; |
| 271 | UiFrameInfoBuilder(frameInfo) |
| 272 | .addFlag(FrameInfoFlags::kRTAnimation) |
| 273 | .setVsync(mRenderThread.timeLord().computeFrameTimeNanos(), |
| 274 | mRenderThread.timeLord().latestVsync()); |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 275 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 276 | TreeInfo info(TreeInfo::MODE_RT_ONLY, mRenderThread.renderState()); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 277 | prepareTree(info, frameInfo); |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 278 | if (info.out.canDrawThisFrame) { |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 279 | draw(); |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 280 | } |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 281 | } |
| 282 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 283 | void CanvasContext::invokeFunctor(RenderThread& thread, Functor* functor) { |
John Reck | d3d8daf | 2014-04-10 15:00:13 -0700 | [diff] [blame] | 284 | ATRACE_CALL(); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 285 | DrawGlInfo::Mode mode = DrawGlInfo::kModeProcessNoContext; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 286 | if (thread.eglManager().hasEglContext()) { |
| 287 | thread.eglManager().requireGlContext(); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 288 | mode = DrawGlInfo::kModeProcess; |
| 289 | } |
John Reck | 6f07a0d | 2014-04-16 21:31:25 -0700 | [diff] [blame] | 290 | |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 291 | thread.renderState().invokeFunctor(functor, mode, nullptr); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 292 | } |
| 293 | |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 294 | void CanvasContext::markLayerInUse(RenderNode* node) { |
| 295 | if (mPrefetechedLayers.erase(node)) { |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 296 | node->decStrong(nullptr); |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | |
| 300 | static void destroyPrefetechedNode(RenderNode* node) { |
| 301 | ALOGW("Incorrectly called buildLayer on View: %s, destroying layer...", node->getName()); |
| 302 | node->destroyHardwareResources(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 303 | node->decStrong(nullptr); |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | void CanvasContext::freePrefetechedLayers() { |
| 307 | if (mPrefetechedLayers.size()) { |
| 308 | requireGlContext(); |
| 309 | std::for_each(mPrefetechedLayers.begin(), mPrefetechedLayers.end(), destroyPrefetechedNode); |
| 310 | mPrefetechedLayers.clear(); |
| 311 | } |
| 312 | } |
| 313 | |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 314 | void CanvasContext::buildLayer(RenderNode* node) { |
| 315 | ATRACE_CALL(); |
| 316 | if (!mEglManager.hasEglContext() || !mCanvas) { |
| 317 | return; |
| 318 | } |
| 319 | requireGlContext(); |
| 320 | // buildLayer() will leave the tree in an unknown state, so we must stop drawing |
| 321 | stopDrawing(); |
| 322 | |
| 323 | TreeInfo info(TreeInfo::MODE_FULL, mRenderThread.renderState()); |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 324 | info.damageAccumulator = &mDamageAccumulator; |
| 325 | info.renderer = mCanvas; |
John Reck | 9eb9f6f | 2014-08-21 11:23:05 -0700 | [diff] [blame] | 326 | info.runAnimations = false; |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 327 | node->prepareTree(info); |
| 328 | SkRect ignore; |
| 329 | mDamageAccumulator.finish(&ignore); |
| 330 | // Tickle the GENERIC property on node to mark it as dirty for damaging |
| 331 | // purposes when the frame is actually drawn |
| 332 | node->setPropertyFieldsDirty(RenderNode::GENERIC); |
| 333 | |
John Reck | 443a714 | 2014-09-04 17:40:05 -0700 | [diff] [blame] | 334 | mCanvas->markLayersAsBuildLayers(); |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 335 | mCanvas->flushLayerUpdates(); |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 336 | |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 337 | node->incStrong(nullptr); |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 338 | mPrefetechedLayers.insert(node); |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 339 | } |
| 340 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 341 | bool CanvasContext::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap) { |
| 342 | requireGlContext(); |
John Reck | 68bfe0a | 2014-06-24 15:34:58 -0700 | [diff] [blame] | 343 | layer->apply(); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 344 | return LayerRenderer::copyLayer(mRenderThread.renderState(), layer->backingLayer(), bitmap); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 345 | } |
| 346 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 347 | void CanvasContext::destroyHardwareResources() { |
| 348 | stopDrawing(); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 349 | if (mEglManager.hasEglContext()) { |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 350 | requireGlContext(); |
John Reck | dff9957 | 2014-08-29 09:59:43 -0700 | [diff] [blame] | 351 | freePrefetechedLayers(); |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame] | 352 | mRootRenderNode->destroyHardwareResources(); |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 353 | Caches::getInstance().flush(Caches::kFlushMode_Layers); |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | void CanvasContext::trimMemory(RenderThread& thread, int level) { |
| 358 | // No context means nothing to free |
| 359 | if (!thread.eglManager().hasEglContext()) return; |
| 360 | |
Jorim Jaggi | 786afcb | 2014-09-25 02:41:29 +0200 | [diff] [blame] | 361 | ATRACE_CALL(); |
John Reck | 3c2b7fa | 2014-07-07 09:16:54 -0700 | [diff] [blame] | 362 | thread.eglManager().requireGlContext(); |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 363 | if (level >= TRIM_MEMORY_COMPLETE) { |
| 364 | Caches::getInstance().flush(Caches::kFlushMode_Full); |
| 365 | thread.eglManager().destroy(); |
| 366 | } else if (level >= TRIM_MEMORY_UI_HIDDEN) { |
| 367 | Caches::getInstance().flush(Caches::kFlushMode_Moderate); |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 368 | } |
| 369 | } |
| 370 | |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 371 | void CanvasContext::runWithGlContext(RenderTask* task) { |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 372 | requireGlContext(); |
| 373 | task->run(); |
| 374 | } |
| 375 | |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 376 | Layer* CanvasContext::createTextureLayer() { |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 377 | requireSurface(); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 378 | return LayerRenderer::createTextureLayer(mRenderThread.renderState()); |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 379 | } |
| 380 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 381 | void CanvasContext::requireGlContext() { |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 382 | mEglManager.requireGlContext(); |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 383 | } |
| 384 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 385 | void CanvasContext::setTextureAtlas(RenderThread& thread, |
| 386 | const sp<GraphicBuffer>& buffer, int64_t* map, size_t mapSize) { |
| 387 | thread.eglManager().setTextureAtlas(buffer, map, mapSize); |
John Reck | 66f0be6 | 2014-05-13 13:39:31 -0700 | [diff] [blame] | 388 | } |
| 389 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 390 | void CanvasContext::dumpFrames(int fd) { |
| 391 | FILE* file = fdopen(fd, "a"); |
| 392 | fprintf(file, "\n\n---PROFILEDATA---"); |
| 393 | for (size_t i = 0; i < mFrames.size(); i++) { |
| 394 | FrameInfo& frame = mFrames[i]; |
| 395 | if (frame[FrameInfoIndex::kSyncStart] == 0) { |
| 396 | continue; |
| 397 | } |
| 398 | fprintf(file, "\n"); |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 399 | for (int i = 0; i < static_cast<int>(FrameInfoIndex::kNumIndexes); i++) { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 400 | fprintf(file, "%" PRId64 ",", frame[i]); |
| 401 | } |
| 402 | } |
| 403 | fprintf(file, "\n---PROFILEDATA---\n\n"); |
| 404 | fflush(file); |
| 405 | } |
| 406 | |
| 407 | void CanvasContext::resetFrameStats() { |
| 408 | mFrames.clear(); |
| 409 | mRenderThread.jankTracker().reset(); |
| 410 | } |
| 411 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 412 | } /* namespace renderthread */ |
| 413 | } /* namespace uirenderer */ |
| 414 | } /* namespace android */ |