blob: b61eef21087a577c1085a856d4d4fb15266e83fb [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
Chris Craik5e00c7c2016-07-06 16:10:09 -070017#pragma once
John Reck23b797a2014-01-03 18:08:34 -080018
Chris Craik5e00c7c2016-07-06 16:10:09 -070019#include "BakedOpDispatcher.h"
20#include "BakedOpRenderer.h"
John Reckba6adf62015-02-19 14:36:50 -080021#include "DamageAccumulator.h"
Chris Craik5e00c7c2016-07-06 16:10:09 -070022#include "FrameBuilder.h"
John Reckba6adf62015-02-19 14:36:50 -080023#include "FrameInfo.h"
John Reck4c9e59d2015-05-12 07:17:50 -070024#include "FrameInfoVisualizer.h"
Andres Morales910beb82016-02-02 16:19:40 -080025#include "FrameMetricsReporter.h"
Chris Craik0b7e8242015-10-28 16:50:44 -070026#include "IContextFactory.h"
Stan Iliev768e3932016-07-08 21:34:52 -040027#include "IRenderPipeline.h"
Chris Craik0b7e8242015-10-28 16:50:44 -070028#include "LayerUpdateQueue.h"
John Reckba6adf62015-02-19 14:36:50 -080029#include "RenderNode.h"
John Reck38f6c032016-03-17 10:23:49 -070030#include "thread/Task.h"
31#include "thread/TaskProcessor.h"
John Reckba6adf62015-02-19 14:36:50 -080032#include "utils/RingBuffer.h"
33#include "renderthread/RenderTask.h"
34#include "renderthread/RenderThread.h"
John Reck998a6d82014-08-28 15:35:53 -070035
John Reck23b797a2014-01-03 18:08:34 -080036#include <cutils/compiler.h>
37#include <EGL/egl.h>
John Reck19b6bcf2014-02-14 20:03:38 -080038#include <SkBitmap.h>
John Reckd04794a2015-05-08 10:04:36 -070039#include <SkRect.h>
John Reck4f02bf42014-01-03 18:09:17 -080040#include <utils/Functor.h>
John Reckf6481082016-02-02 15:18:23 -080041#include <gui/Surface.h>
John Reck4f02bf42014-01-03 18:09:17 -080042
John Reck38f6c032016-03-17 10:23:49 -070043#include <functional>
John Reckba6adf62015-02-19 14:36:50 -080044#include <set>
John Reckb36016c2015-03-11 08:50:53 -070045#include <string>
Skuhneea7a7fb2015-08-28 07:10:31 -070046#include <vector>
John Reck23b797a2014-01-03 18:08:34 -080047
48namespace android {
49namespace uirenderer {
John Reck4f02bf42014-01-03 18:09:17 -080050
John Reck119907c2014-08-14 09:02:01 -070051class AnimationContext;
John Reck19b6bcf2014-02-14 20:03:38 -080052class DeferredLayerUpdater;
John Reck1949e792014-04-08 15:18:56 -070053class Layer;
Chris Craik5e00c7c2016-07-06 16:10:09 -070054class Rect;
John Reck443a7142014-09-04 17:40:05 -070055class RenderState;
John Reck4f02bf42014-01-03 18:09:17 -080056
John Reck23b797a2014-01-03 18:08:34 -080057namespace renderthread {
58
John Reck3b202512014-06-23 13:13:08 -070059class EglManager;
Stan Iliev768e3932016-07-08 21:34:52 -040060class Frame;
John Reck1125d1f2014-10-23 11:02:19 -070061
John Reck23b797a2014-01-03 18:08:34 -080062// This per-renderer class manages the bridge between the global EGL context
63// and the render surface.
John Reck119907c2014-08-14 09:02:01 -070064// TODO: Rename to Renderer or some other per-window, top-level manager
John Recke45b1fd2014-04-15 09:50:16 -070065class CanvasContext : public IFrameCallback {
John Reck23b797a2014-01-03 18:08:34 -080066public:
Stan Iliev03de0742016-07-07 12:35:54 -040067 static CanvasContext* create(RenderThread& thread, bool translucent,
68 RenderNode* rootRenderNode, IContextFactory* contextFactory);
John Recke45b1fd2014-04-15 09:50:16 -070069 virtual ~CanvasContext();
John Reck23b797a2014-01-03 18:08:34 -080070
Derek Sollenberger6a21ca52016-09-28 13:39:55 -040071 /**
72 * Update or create a layer specific for the provided RenderNode. The layer
73 * attached to the node will be specific to the RenderPipeline used by this
74 * context
75 *
76 * @return true if the layer has been created or updated
77 */
78 bool createOrUpdateLayer(RenderNode* node, const DamageAccumulator& dmgAccumulator) {
79 return mRenderPipeline->createOrUpdateLayer(node, dmgAccumulator);
80 }
81
82 /**
83 * Destroy any layers that have been attached to the provided RenderNode removing
84 * any state that may have been set during createOrUpdateLayer().
85 */
86 static void destroyLayer(RenderNode* node);
87
Derek Sollenbergerdaf72292016-10-25 12:09:18 -040088 static void invokeFunctor(const RenderThread& thread, Functor* functor);
89
90 static void prepareToDraw(const RenderThread& thread, Bitmap* bitmap);
91
Derek Sollenberger0df62092016-09-27 16:04:42 -040092 /*
93 * If Properties::isSkiaEnabled() is true then this will return the Skia
94 * grContext associated with the current RenderPipeline.
95 */
Derek Sollenberger98f75d52016-10-25 10:25:45 -040096 GrContext* getGrContext() const { return mRenderThread.getGrContext(); }
Derek Sollenberger0df62092016-09-27 16:04:42 -040097
John Reck1125d1f2014-10-23 11:02:19 -070098 // Won't take effect until next EGLSurface creation
99 void setSwapBehavior(SwapBehavior swapBehavior);
100
John Reckf6481082016-02-02 15:18:23 -0800101 void initialize(Surface* surface);
102 void updateSurface(Surface* surface);
103 bool pauseSurface(Surface* surface);
John Reck8afcc762016-04-13 10:24:06 -0700104 void setStopped(bool stopped);
John Reckf6481082016-02-02 15:18:23 -0800105 bool hasSurface() { return mNativeSurface.get(); }
John Reckaa95a882014-11-07 11:02:07 -0800106
John Reckab1080c2016-06-21 16:24:20 -0700107 void setup(float lightRadius,
Chris Craik058fc642014-07-23 18:19:28 -0700108 uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha);
Alan Viverette50210d92015-05-14 18:05:36 -0700109 void setLightCenter(const Vector3& lightCenter);
John Reck63a06672014-05-07 13:45:54 -0700110 void setOpaque(bool opaque);
John Reck8afcc762016-04-13 10:24:06 -0700111 bool makeCurrent();
Skuhneea7a7fb2015-08-28 07:10:31 -0700112 void prepareTree(TreeInfo& info, int64_t* uiFrameInfo,
113 int64_t syncQueued, RenderNode* target);
John Recke4267ea2014-06-03 15:53:15 -0700114 void draw();
John Reck51f2d602016-04-06 07:50:47 -0700115 void destroy(TreeObserver* observer);
John Reck23b797a2014-01-03 18:08:34 -0800116
Chris Craik0b7e8242015-10-28 16:50:44 -0700117 // IFrameCallback, Choreographer-driven frame callback entry point
Chris Craikd41c4d82015-01-05 15:51:13 -0800118 virtual void doFrame() override;
Skuhneea7a7fb2015-08-28 07:10:31 -0700119 void prepareAndDraw(RenderNode* node);
John Recke45b1fd2014-04-15 09:50:16 -0700120
John Reck51f2d602016-04-06 07:50:47 -0700121 void buildLayer(RenderNode* node, TreeObserver* observer);
John Reck19b6bcf2014-02-14 20:03:38 -0800122 bool copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap);
John Reck998a6d82014-08-28 15:35:53 -0700123 void markLayerInUse(RenderNode* node);
John Reck19b6bcf2014-02-14 20:03:38 -0800124
John Reck51f2d602016-04-06 07:50:47 -0700125 void destroyHardwareResources(TreeObserver* observer);
John Reckf47a5942014-06-30 16:20:04 -0700126 static void trimMemory(RenderThread& thread, int level);
John Recke1628b72014-05-23 15:11:19 -0700127
Derek Sollenberger56ad6ec2016-07-22 12:13:32 -0400128 DeferredLayerUpdater* createTextureLayer();
John Reck1949e792014-04-08 15:18:56 -0700129
John Reckf47a5942014-06-30 16:20:04 -0700130 void stopDrawing();
John Recka5dda642014-05-22 15:43:54 -0700131 void notifyFramePending();
132
John Reck4c9e59d2015-05-12 07:17:50 -0700133 FrameInfoVisualizer& profiler() { return mProfiler; }
John Reckfe5e7b72014-05-23 17:42:28 -0700134
John Reckba6adf62015-02-19 14:36:50 -0800135 void dumpFrames(int fd);
136 void resetFrameStats();
137
John Reckb36016c2015-03-11 08:50:53 -0700138 void setName(const std::string&& name) { mName = name; }
139 const std::string& name() { return mName; }
140
John Recke248bd12015-08-05 13:53:53 -0700141 void serializeDisplayListTree();
142
Skuhneea7a7fb2015-08-28 07:10:31 -0700143 void addRenderNode(RenderNode* node, bool placeFront) {
144 int pos = placeFront ? 0 : static_cast<int>(mRenderNodes.size());
Chris Craik0b7e8242015-10-28 16:50:44 -0700145 mRenderNodes.emplace(mRenderNodes.begin() + pos, node);
Skuhneea7a7fb2015-08-28 07:10:31 -0700146 }
147
148 void removeRenderNode(RenderNode* node) {
149 mRenderNodes.erase(std::remove(mRenderNodes.begin(), mRenderNodes.end(), node),
150 mRenderNodes.end());
151 }
152
Skuhneb8160872015-09-22 09:51:39 -0700153 void setContentDrawBounds(int left, int top, int right, int bottom) {
154 mContentDrawBounds.set(left, top, right, bottom);
Skuhneea7a7fb2015-08-28 07:10:31 -0700155 }
156
Chris Craike2e53a72015-10-28 15:55:40 -0700157 RenderState& getRenderState() {
158 return mRenderThread.renderState();
159 }
160
Andres Morales910beb82016-02-02 16:19:40 -0800161 void addFrameMetricsObserver(FrameMetricsObserver* observer) {
162 if (mFrameMetricsReporter.get() == nullptr) {
163 mFrameMetricsReporter.reset(new FrameMetricsReporter());
Andres Morales06f5bc72015-12-15 15:21:31 -0800164 }
165
Andres Morales910beb82016-02-02 16:19:40 -0800166 mFrameMetricsReporter->addObserver(observer);
Andres Morales06f5bc72015-12-15 15:21:31 -0800167 }
168
Andres Morales910beb82016-02-02 16:19:40 -0800169 void removeFrameMetricsObserver(FrameMetricsObserver* observer) {
170 if (mFrameMetricsReporter.get() != nullptr) {
171 mFrameMetricsReporter->removeObserver(observer);
172 if (!mFrameMetricsReporter->hasObservers()) {
173 mFrameMetricsReporter.reset(nullptr);
Andres Morales06f5bc72015-12-15 15:21:31 -0800174 }
175 }
176 }
177
John Reck38f6c032016-03-17 10:23:49 -0700178 // Used to queue up work that needs to be completed before this frame completes
179 ANDROID_API void enqueueFrameWork(std::function<void()>&& func);
180
John Reck28912a52016-04-18 14:34:18 -0700181 ANDROID_API int64_t getFrameNumber();
182
Chris Craik06e2e9c2016-08-31 17:32:46 -0700183 void waitOnFences();
184
John Reck23b797a2014-01-03 18:08:34 -0800185private:
Stan Iliev03de0742016-07-07 12:35:54 -0400186 CanvasContext(RenderThread& thread, bool translucent, RenderNode* rootRenderNode,
Stan Iliev768e3932016-07-08 21:34:52 -0400187 IContextFactory* contextFactory, std::unique_ptr<IRenderPipeline> renderPipeline);
Stan Iliev03de0742016-07-07 12:35:54 -0400188
John Recka5dda642014-05-22 15:43:54 -0700189 friend class RegisterFrameCallbackTask;
John Reck443a7142014-09-04 17:40:05 -0700190 // TODO: Replace with something better for layer & other GL object
191 // lifecycle tracking
192 friend class android::uirenderer::RenderState;
John Recka5dda642014-05-22 15:43:54 -0700193
John Reckf6481082016-02-02 15:18:23 -0800194 void setSurface(Surface* window);
John Reck4f02bf42014-01-03 18:09:17 -0800195
John Reck51f2d602016-04-06 07:50:47 -0700196 void freePrefetchedLayers(TreeObserver* observer);
John Reck998a6d82014-08-28 15:35:53 -0700197
John Reck0def73a2016-07-01 16:19:13 -0700198 bool isSwapChainStuffed();
199
Stan Iliev768e3932016-07-08 21:34:52 -0400200 SkRect computeDirtyRect(const Frame& frame, SkRect* dirty);
201
John Reck77c40102015-10-26 15:49:47 -0700202 EGLint mLastFrameWidth = 0;
203 EGLint mLastFrameHeight = 0;
Chris Craikddf22152015-10-14 17:42:47 -0700204
John Reck4f02bf42014-01-03 18:09:17 -0800205 RenderThread& mRenderThread;
John Reckf6481082016-02-02 15:18:23 -0800206 sp<Surface> mNativeSurface;
John Reck306f3312016-06-10 16:01:55 -0700207 // stopped indicates the CanvasContext will reject actual redraw operations,
208 // and defer repaint until it is un-stopped
John Reck8afcc762016-04-13 10:24:06 -0700209 bool mStopped = false;
John Reck306f3312016-06-10 16:01:55 -0700210 // CanvasContext is dirty if it has received an update that it has not
211 // painted onto its surface.
212 bool mIsDirty = false;
Stan Iliev768e3932016-07-08 21:34:52 -0400213 SwapBehavior mSwapBehavior = SwapBehavior::kSwap_default;
John Recke486d932015-10-28 09:21:19 -0700214 struct SwapHistory {
215 SkRect damage;
216 nsecs_t vsyncTime;
John Reck0def73a2016-07-01 16:19:13 -0700217 nsecs_t swapCompletedTime;
218 nsecs_t dequeueDuration;
219 nsecs_t queueDuration;
John Recke486d932015-10-28 09:21:19 -0700220 };
221
222 RingBuffer<SwapHistory, 3> mSwapHistory;
John Reck28912a52016-04-18 14:34:18 -0700223 int64_t mFrameNumber = -1;
John Reck4f02bf42014-01-03 18:09:17 -0800224
Chris Craik31635682016-07-19 17:59:12 -0700225 // last vsync for a dropped frame due to stuffed queue
226 nsecs_t mLastDropVsync = 0;
227
John Reck4f02bf42014-01-03 18:09:17 -0800228 bool mOpaque;
Chris Craik98787e62015-11-13 10:55:30 -0800229 BakedOpRenderer::LightInfo mLightInfo;
Chris Craik6e068c012016-01-15 16:15:30 -0800230 FrameBuilder::LightGeometry mLightGeometry = { {0, 0, 0}, 0 };
Chris Craik98787e62015-11-13 10:55:30 -0800231
John Reckedc524c2015-03-18 15:24:33 -0700232 bool mHaveNewSurface = false;
John Recke4267ea2014-06-03 15:53:15 -0700233 DamageAccumulator mDamageAccumulator;
Chris Craik0b7e8242015-10-28 16:50:44 -0700234 LayerUpdateQueue mLayerUpdateQueue;
Chris Craik51d6a3d2014-12-22 17:16:56 -0800235 std::unique_ptr<AnimationContext> mAnimationContext;
John Recke45b1fd2014-04-15 09:50:16 -0700236
Skuhneea7a7fb2015-08-28 07:10:31 -0700237 std::vector< sp<RenderNode> > mRenderNodes;
John Reckfe5e7b72014-05-23 17:42:28 -0700238
John Reckedc524c2015-03-18 15:24:33 -0700239 FrameInfo* mCurrentFrameInfo = nullptr;
John Reck4c9e59d2015-05-12 07:17:50 -0700240 // Ring buffer large enough for 2 seconds worth of frames
241 RingBuffer<FrameInfo, 120> mFrames;
John Reckb36016c2015-03-11 08:50:53 -0700242 std::string mName;
John Reckedc524c2015-03-18 15:24:33 -0700243 JankTracker mJankTracker;
John Reck4c9e59d2015-05-12 07:17:50 -0700244 FrameInfoVisualizer mProfiler;
Andres Morales910beb82016-02-02 16:19:40 -0800245 std::unique_ptr<FrameMetricsReporter> mFrameMetricsReporter;
John Reck998a6d82014-08-28 15:35:53 -0700246
John Reck51f2d602016-04-06 07:50:47 -0700247 std::set<RenderNode*> mPrefetchedLayers;
Skuhneea7a7fb2015-08-28 07:10:31 -0700248
249 // Stores the bounds of the main content.
Skuhneb8160872015-09-22 09:51:39 -0700250 Rect mContentDrawBounds;
John Reck38f6c032016-03-17 10:23:49 -0700251
252 // TODO: This is really a Task<void> but that doesn't really work
253 // when Future<> expects to be able to get/set a value
254 struct FuncTask : public Task<bool> {
255 std::function<void()> func;
256 };
257 class FuncTaskProcessor;
258
259 std::vector< sp<FuncTask> > mFrameFences;
260 sp<TaskProcessor<bool> > mFrameWorkProcessor;
Stan Iliev768e3932016-07-08 21:34:52 -0400261 std::unique_ptr<IRenderPipeline> mRenderPipeline;
John Reck23b797a2014-01-03 18:08:34 -0800262};
263
264} /* namespace renderthread */
265} /* namespace uirenderer */
266} /* namespace android */