blob: eed523810403889a937e22dbe245d088a6ab35ff [file] [log] [blame]
John Reck4f02bf42014-01-03 18:09:17 -08001/*
2 * Copyright (C) 2013 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 Reck4f02bf42014-01-03 18:09:17 -080017#include "RenderProxy.h"
18
John Reckba6adf62015-02-19 14:36:50 -080019#include "DeferredLayerUpdater.h"
20#include "DisplayList.h"
John Reck10dd0582016-03-31 16:36:16 -070021#include "Readback.h"
John Reckba6adf62015-02-19 14:36:50 -080022#include "Rect.h"
23#include "renderthread/CanvasContext.h"
John Reck43871902016-08-01 14:39:24 -070024#include "renderthread/EglManager.h"
John Reckba6adf62015-02-19 14:36:50 -080025#include "renderthread/RenderTask.h"
26#include "renderthread/RenderThread.h"
John Reck9a814872017-05-22 15:04:21 -070027#include "renderstate/RenderState.h"
John Reckba6adf62015-02-19 14:36:50 -080028#include "utils/Macros.h"
John Reck43871902016-08-01 14:39:24 -070029#include "utils/TimeUtils.h"
John Reck4f02bf42014-01-03 18:09:17 -080030
sergeyv59eecb522016-11-17 17:54:57 -080031#include <ui/GraphicBuffer.h>
32
John Reck4f02bf42014-01-03 18:09:17 -080033namespace android {
34namespace uirenderer {
35namespace renderthread {
36
37#define ARGS(method) method ## Args
38
John Reck19b6bcf2014-02-14 20:03:38 -080039#define CREATE_BRIDGE0(name) CREATE_BRIDGE(name,,,,,,,,)
John Reck4f02bf42014-01-03 18:09:17 -080040#define CREATE_BRIDGE1(name, a1) CREATE_BRIDGE(name, a1,,,,,,,)
41#define CREATE_BRIDGE2(name, a1, a2) CREATE_BRIDGE(name, a1,a2,,,,,,)
42#define CREATE_BRIDGE3(name, a1, a2, a3) CREATE_BRIDGE(name, a1,a2,a3,,,,,)
43#define CREATE_BRIDGE4(name, a1, a2, a3, a4) CREATE_BRIDGE(name, a1,a2,a3,a4,,,,)
Chris Craik797b95b2014-05-20 18:10:25 -070044#define CREATE_BRIDGE5(name, a1, a2, a3, a4, a5) CREATE_BRIDGE(name, a1,a2,a3,a4,a5,,,)
Chris Craik058fc642014-07-23 18:19:28 -070045#define CREATE_BRIDGE6(name, a1, a2, a3, a4, a5, a6) CREATE_BRIDGE(name, a1,a2,a3,a4,a5,a6,,)
46#define CREATE_BRIDGE7(name, a1, a2, a3, a4, a5, a6, a7) CREATE_BRIDGE(name, a1,a2,a3,a4,a5,a6,a7,)
John Reck4f02bf42014-01-03 18:09:17 -080047#define CREATE_BRIDGE(name, a1, a2, a3, a4, a5, a6, a7, a8) \
48 typedef struct { \
49 a1; a2; a3; a4; a5; a6; a7; a8; \
50 } ARGS(name); \
John Reck43871902016-08-01 14:39:24 -070051 static_assert(std::is_trivially_destructible<ARGS(name)>::value, \
52 "Error, ARGS must be trivially destructible!"); \
John Reck4f02bf42014-01-03 18:09:17 -080053 static void* Bridge_ ## name(ARGS(name)* args)
54
55#define SETUP_TASK(method) \
56 LOG_ALWAYS_FATAL_IF( METHOD_INVOKE_PAYLOAD_SIZE < sizeof(ARGS(method)), \
Mark Salyzyn546f3532014-06-10 12:29:14 -070057 "METHOD_INVOKE_PAYLOAD_SIZE %zu is smaller than sizeof(" #method "Args) %zu", \
John Reck4f02bf42014-01-03 18:09:17 -080058 METHOD_INVOKE_PAYLOAD_SIZE, sizeof(ARGS(method))); \
John Recke2c45522014-04-07 17:31:44 -070059 MethodInvokeRenderTask* task = new MethodInvokeRenderTask((RunnableMethod) Bridge_ ## method); \
John Reck4f02bf42014-01-03 18:09:17 -080060 ARGS(method) *args = (ARGS(method) *) task->payload()
61
John Reck119907c2014-08-14 09:02:01 -070062CREATE_BRIDGE4(createContext, RenderThread* thread, bool translucent,
63 RenderNode* rootRenderNode, IContextFactory* contextFactory) {
Stan Iliev03de0742016-07-07 12:35:54 -040064 return CanvasContext::create(*args->thread, args->translucent,
John Reck119907c2014-08-14 09:02:01 -070065 args->rootRenderNode, args->contextFactory);
John Reck4f02bf42014-01-03 18:09:17 -080066}
67
John Reck119907c2014-08-14 09:02:01 -070068RenderProxy::RenderProxy(bool translucent, RenderNode* rootRenderNode, IContextFactory* contextFactory)
John Reck4f02bf42014-01-03 18:09:17 -080069 : mRenderThread(RenderThread::getInstance())
Chris Craikd41c4d82015-01-05 15:51:13 -080070 , mContext(nullptr) {
John Reck4f02bf42014-01-03 18:09:17 -080071 SETUP_TASK(createContext);
72 args->translucent = translucent;
John Recke45b1fd2014-04-15 09:50:16 -070073 args->rootRenderNode = rootRenderNode;
John Reck3b202512014-06-23 13:13:08 -070074 args->thread = &mRenderThread;
John Reck119907c2014-08-14 09:02:01 -070075 args->contextFactory = contextFactory;
John Reck4f02bf42014-01-03 18:09:17 -080076 mContext = (CanvasContext*) postAndWait(task);
Skuhneea7a7fb2015-08-28 07:10:31 -070077 mDrawFrameTask.setContext(&mRenderThread, mContext, rootRenderNode);
John Reck4f02bf42014-01-03 18:09:17 -080078}
79
80RenderProxy::~RenderProxy() {
81 destroyContext();
82}
83
84CREATE_BRIDGE1(destroyContext, CanvasContext* context) {
85 delete args->context;
Chris Craikd41c4d82015-01-05 15:51:13 -080086 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -080087}
88
89void RenderProxy::destroyContext() {
90 if (mContext) {
91 SETUP_TASK(destroyContext);
92 args->context = mContext;
Chris Craikd41c4d82015-01-05 15:51:13 -080093 mContext = nullptr;
Skuhneea7a7fb2015-08-28 07:10:31 -070094 mDrawFrameTask.setContext(nullptr, nullptr, nullptr);
John Reck668f0e32014-03-26 15:10:40 -070095 // This is also a fence as we need to be certain that there are no
96 // outstanding mDrawFrame tasks posted before it is destroyed
97 postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -080098 }
99}
100
John Reck1125d1f2014-10-23 11:02:19 -0700101CREATE_BRIDGE2(setSwapBehavior, CanvasContext* context, SwapBehavior swapBehavior) {
102 args->context->setSwapBehavior(args->swapBehavior);
Chris Craikd41c4d82015-01-05 15:51:13 -0800103 return nullptr;
John Reck1125d1f2014-10-23 11:02:19 -0700104}
105
106void RenderProxy::setSwapBehavior(SwapBehavior swapBehavior) {
107 SETUP_TASK(setSwapBehavior);
108 args->context = mContext;
109 args->swapBehavior = swapBehavior;
110 post(task);
111}
112
John Reckfe5e7b72014-05-23 17:42:28 -0700113CREATE_BRIDGE1(loadSystemProperties, CanvasContext* context) {
John Recke4280ba2014-05-05 16:39:37 -0700114 bool needsRedraw = false;
115 if (Caches::hasInstance()) {
Chris Craik2507c342015-05-04 14:36:49 -0700116 needsRedraw = Properties::load();
John Recke4280ba2014-05-05 16:39:37 -0700117 }
Chris Craik2507c342015-05-04 14:36:49 -0700118 if (args->context->profiler().consumeProperties()) {
John Reckfe5e7b72014-05-23 17:42:28 -0700119 needsRedraw = true;
120 }
John Recke4280ba2014-05-05 16:39:37 -0700121 return (void*) needsRedraw;
122}
123
124bool RenderProxy::loadSystemProperties() {
125 SETUP_TASK(loadSystemProperties);
John Reckfe5e7b72014-05-23 17:42:28 -0700126 args->context = mContext;
John Recke4280ba2014-05-05 16:39:37 -0700127 return (bool) postAndWait(task);
128}
129
John Reckb36016c2015-03-11 08:50:53 -0700130CREATE_BRIDGE2(setName, CanvasContext* context, const char* name) {
131 args->context->setName(std::string(args->name));
132 return nullptr;
133}
134
135void RenderProxy::setName(const char* name) {
136 SETUP_TASK(setName);
137 args->context = mContext;
138 args->name = name;
Chris Craik2507c342015-05-04 14:36:49 -0700139 postAndWait(task); // block since name/value pointers owned by caller
John Reckb36016c2015-03-11 08:50:53 -0700140}
141
John Reckf6481082016-02-02 15:18:23 -0800142CREATE_BRIDGE2(initialize, CanvasContext* context, Surface* surface) {
143 args->context->initialize(args->surface);
Thomas Buhot0bcd0cb2015-12-04 12:18:03 +0100144 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800145}
146
John Reckf6481082016-02-02 15:18:23 -0800147void RenderProxy::initialize(const sp<Surface>& surface) {
John Reck4f02bf42014-01-03 18:09:17 -0800148 SETUP_TASK(initialize);
149 args->context = mContext;
John Reckf6481082016-02-02 15:18:23 -0800150 args->surface = surface.get();
Thomas Buhot0bcd0cb2015-12-04 12:18:03 +0100151 post(task);
John Reck4f02bf42014-01-03 18:09:17 -0800152}
153
John Reckf6481082016-02-02 15:18:23 -0800154CREATE_BRIDGE2(updateSurface, CanvasContext* context, Surface* surface) {
155 args->context->updateSurface(args->surface);
Chris Craikd41c4d82015-01-05 15:51:13 -0800156 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800157}
158
John Reckf6481082016-02-02 15:18:23 -0800159void RenderProxy::updateSurface(const sp<Surface>& surface) {
John Reck4f02bf42014-01-03 18:09:17 -0800160 SETUP_TASK(updateSurface);
161 args->context = mContext;
John Reckf6481082016-02-02 15:18:23 -0800162 args->surface = surface.get();
John Reckcd682122016-08-09 12:09:03 -0700163 post(task);
John Reckf7d9c1d2014-04-09 10:01:03 -0700164}
165
John Reckf6481082016-02-02 15:18:23 -0800166CREATE_BRIDGE2(pauseSurface, CanvasContext* context, Surface* surface) {
167 return (void*) args->context->pauseSurface(args->surface);
John Reckf7d9c1d2014-04-09 10:01:03 -0700168}
169
John Reckf6481082016-02-02 15:18:23 -0800170bool RenderProxy::pauseSurface(const sp<Surface>& surface) {
John Reckf7d9c1d2014-04-09 10:01:03 -0700171 SETUP_TASK(pauseSurface);
172 args->context = mContext;
John Reckf6481082016-02-02 15:18:23 -0800173 args->surface = surface.get();
John Reck01a5ea32014-12-03 13:01:07 -0800174 return (bool) postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -0800175}
176
John Reck8afcc762016-04-13 10:24:06 -0700177CREATE_BRIDGE2(setStopped, CanvasContext* context, bool stopped) {
178 args->context->setStopped(args->stopped);
179 return nullptr;
180}
181
182void RenderProxy::setStopped(bool stopped) {
183 SETUP_TASK(setStopped);
184 args->context = mContext;
185 args->stopped = stopped;
186 postAndWait(task);
187}
188
John Reckab1080c2016-06-21 16:24:20 -0700189CREATE_BRIDGE4(setup, CanvasContext* context,
Alan Viverette50210d92015-05-14 18:05:36 -0700190 float lightRadius, uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) {
John Reckab1080c2016-06-21 16:24:20 -0700191 args->context->setup(args->lightRadius,
Chris Craik058fc642014-07-23 18:19:28 -0700192 args->ambientShadowAlpha, args->spotShadowAlpha);
Chris Craikd41c4d82015-01-05 15:51:13 -0800193 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800194}
195
John Reckab1080c2016-06-21 16:24:20 -0700196void RenderProxy::setup(float lightRadius,
John Reckb36016c2015-03-11 08:50:53 -0700197 uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) {
John Reck4f02bf42014-01-03 18:09:17 -0800198 SETUP_TASK(setup);
199 args->context = mContext;
Chris Craik797b95b2014-05-20 18:10:25 -0700200 args->lightRadius = lightRadius;
Chris Craik058fc642014-07-23 18:19:28 -0700201 args->ambientShadowAlpha = ambientShadowAlpha;
202 args->spotShadowAlpha = spotShadowAlpha;
John Reck4f02bf42014-01-03 18:09:17 -0800203 post(task);
204}
205
Alan Viverette50210d92015-05-14 18:05:36 -0700206CREATE_BRIDGE2(setLightCenter, CanvasContext* context, Vector3 lightCenter) {
207 args->context->setLightCenter(args->lightCenter);
208 return nullptr;
209}
210
211void RenderProxy::setLightCenter(const Vector3& lightCenter) {
212 SETUP_TASK(setLightCenter);
213 args->context = mContext;
214 args->lightCenter = lightCenter;
215 post(task);
216}
217
John Reck63a06672014-05-07 13:45:54 -0700218CREATE_BRIDGE2(setOpaque, CanvasContext* context, bool opaque) {
219 args->context->setOpaque(args->opaque);
Chris Craikd41c4d82015-01-05 15:51:13 -0800220 return nullptr;
John Reck63a06672014-05-07 13:45:54 -0700221}
222
223void RenderProxy::setOpaque(bool opaque) {
224 SETUP_TASK(setOpaque);
225 args->context = mContext;
226 args->opaque = opaque;
227 post(task);
228}
229
John Reckba6adf62015-02-19 14:36:50 -0800230int64_t* RenderProxy::frameInfo() {
231 return mDrawFrameTask.frameInfo();
232}
233
John Reck2de950d2017-01-25 10:58:30 -0800234int RenderProxy::syncAndDrawFrame() {
235 return mDrawFrameTask.drawFrame();
John Reck4f02bf42014-01-03 18:09:17 -0800236}
237
John Reck2de950d2017-01-25 10:58:30 -0800238CREATE_BRIDGE1(destroy, CanvasContext* context) {
239 args->context->destroy();
Chris Craikd41c4d82015-01-05 15:51:13 -0800240 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800241}
242
John Reck2de950d2017-01-25 10:58:30 -0800243void RenderProxy::destroy() {
John Reck17035b02014-09-03 07:39:53 -0700244 SETUP_TASK(destroy);
John Reck4f02bf42014-01-03 18:09:17 -0800245 args->context = mContext;
John Reckfae904d2014-04-14 11:01:57 -0700246 // destroyCanvasAndSurface() needs a fence as when it returns the
247 // underlying BufferQueue is going to be released from under
248 // the render thread.
249 postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -0800250}
251
John Reck3b202512014-06-23 13:13:08 -0700252CREATE_BRIDGE2(invokeFunctor, RenderThread* thread, Functor* functor) {
253 CanvasContext::invokeFunctor(*args->thread, args->functor);
Chris Craikd41c4d82015-01-05 15:51:13 -0800254 return nullptr;
John Reck0d1f6342014-03-28 20:30:27 -0700255}
256
257void RenderProxy::invokeFunctor(Functor* functor, bool waitForCompletion) {
John Reckd3d8daf2014-04-10 15:00:13 -0700258 ATRACE_CALL();
John Reck3b202512014-06-23 13:13:08 -0700259 RenderThread& thread = RenderThread::getInstance();
John Reck0d1f6342014-03-28 20:30:27 -0700260 SETUP_TASK(invokeFunctor);
John Reck3b202512014-06-23 13:13:08 -0700261 args->thread = &thread;
John Reck0d1f6342014-03-28 20:30:27 -0700262 args->functor = functor;
263 if (waitForCompletion) {
John Reck3b202512014-06-23 13:13:08 -0700264 // waitForCompletion = true is expected to be fairly rare and only
265 // happen in destruction. Thus it should be fine to temporarily
266 // create a Mutex
John Reck0e89e2b2014-10-31 14:49:06 -0700267 staticPostAndWait(task);
John Reck0d1f6342014-03-28 20:30:27 -0700268 } else {
John Reck3b202512014-06-23 13:13:08 -0700269 thread.queue(task);
John Reck0d1f6342014-03-28 20:30:27 -0700270 }
271}
272
John Reckc36df952015-07-29 10:09:36 -0700273CREATE_BRIDGE1(createTextureLayer, CanvasContext* context) {
Derek Sollenberger56ad6ec2016-07-22 12:13:32 -0400274 return args->context->createTextureLayer();
John Reck19b6bcf2014-02-14 20:03:38 -0800275}
276
277DeferredLayerUpdater* RenderProxy::createTextureLayer() {
278 SETUP_TASK(createTextureLayer);
John Reck1949e792014-04-08 15:18:56 -0700279 args->context = mContext;
John Reck19b6bcf2014-02-14 20:03:38 -0800280 void* retval = postAndWait(task);
281 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(retval);
John Reck19b6bcf2014-02-14 20:03:38 -0800282 return layer;
283}
284
John Reck2de950d2017-01-25 10:58:30 -0800285CREATE_BRIDGE2(buildLayer, CanvasContext* context, RenderNode* node) {
286 args->context->buildLayer(args->node);
Chris Craikd41c4d82015-01-05 15:51:13 -0800287 return nullptr;
John Reck3e824952014-08-20 10:08:39 -0700288}
289
John Reck2de950d2017-01-25 10:58:30 -0800290void RenderProxy::buildLayer(RenderNode* node) {
John Reck3e824952014-08-20 10:08:39 -0700291 SETUP_TASK(buildLayer);
292 args->context = mContext;
293 args->node = node;
294 postAndWait(task);
295}
296
John Reck19b6bcf2014-02-14 20:03:38 -0800297CREATE_BRIDGE3(copyLayerInto, CanvasContext* context, DeferredLayerUpdater* layer,
298 SkBitmap* bitmap) {
299 bool success = args->context->copyLayerInto(args->layer, args->bitmap);
300 return (void*) success;
301}
302
John Reck3731dc22015-04-13 15:20:29 -0700303bool RenderProxy::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap& bitmap) {
John Reck19b6bcf2014-02-14 20:03:38 -0800304 SETUP_TASK(copyLayerInto);
305 args->context = mContext;
306 args->layer = layer;
John Reck3731dc22015-04-13 15:20:29 -0700307 args->bitmap = &bitmap;
John Reck19b6bcf2014-02-14 20:03:38 -0800308 return (bool) postAndWait(task);
309}
310
John Reckd72e0a32014-05-29 18:56:11 -0700311void RenderProxy::pushLayerUpdate(DeferredLayerUpdater* layer) {
312 mDrawFrameTask.pushLayerUpdate(layer);
313}
314
315void RenderProxy::cancelLayerUpdate(DeferredLayerUpdater* layer) {
316 mDrawFrameTask.removeLayerUpdate(layer);
John Reck19b6bcf2014-02-14 20:03:38 -0800317}
318
John Reck918ad522014-06-27 14:45:25 -0700319CREATE_BRIDGE1(detachSurfaceTexture, DeferredLayerUpdater* layer) {
320 args->layer->detachSurfaceTexture();
Chris Craikd41c4d82015-01-05 15:51:13 -0800321 return nullptr;
John Reck918ad522014-06-27 14:45:25 -0700322}
323
324void RenderProxy::detachSurfaceTexture(DeferredLayerUpdater* layer) {
325 SETUP_TASK(detachSurfaceTexture);
326 args->layer = layer;
327 postAndWait(task);
328}
329
John Reck2de950d2017-01-25 10:58:30 -0800330CREATE_BRIDGE1(destroyHardwareResources, CanvasContext* context) {
331 args->context->destroyHardwareResources();
Chris Craikd41c4d82015-01-05 15:51:13 -0800332 return nullptr;
John Recke1628b72014-05-23 15:11:19 -0700333}
334
John Reck2de950d2017-01-25 10:58:30 -0800335void RenderProxy::destroyHardwareResources() {
John Reckf47a5942014-06-30 16:20:04 -0700336 SETUP_TASK(destroyHardwareResources);
John Recke1628b72014-05-23 15:11:19 -0700337 args->context = mContext;
John Reck51f2d602016-04-06 07:50:47 -0700338 postAndWait(task);
John Recke1628b72014-05-23 15:11:19 -0700339}
340
Chris Craik2507c342015-05-04 14:36:49 -0700341CREATE_BRIDGE2(trimMemory, RenderThread* thread, int level) {
John Reckf47a5942014-06-30 16:20:04 -0700342 CanvasContext::trimMemory(*args->thread, args->level);
Chris Craikd41c4d82015-01-05 15:51:13 -0800343 return nullptr;
John Reckf47a5942014-06-30 16:20:04 -0700344}
345
346void RenderProxy::trimMemory(int level) {
John Reckcd3a22c2014-08-06 13:33:59 -0700347 // Avoid creating a RenderThread to do a trimMemory.
348 if (RenderThread::hasInstance()) {
349 RenderThread& thread = RenderThread::getInstance();
Chris Craik2507c342015-05-04 14:36:49 -0700350 SETUP_TASK(trimMemory);
John Reckcd3a22c2014-08-06 13:33:59 -0700351 args->thread = &thread;
352 args->level = level;
353 thread.queue(task);
354 }
John Reckf47a5942014-06-30 16:20:04 -0700355}
356
Chris Craik2507c342015-05-04 14:36:49 -0700357CREATE_BRIDGE2(overrideProperty, const char* name, const char* value) {
358 Properties::overrideProperty(args->name, args->value);
359 return nullptr;
360}
361
362void RenderProxy::overrideProperty(const char* name, const char* value) {
Chris Craik2507c342015-05-04 14:36:49 -0700363 SETUP_TASK(overrideProperty);
364 args->name = name;
365 args->value = value;
366 staticPostAndWait(task); // expensive, but block here since name/value pointers owned by caller
367}
368
John Reck28ad7b52014-04-07 16:59:25 -0700369CREATE_BRIDGE0(fence) {
370 // Intentionally empty
Chris Craikd41c4d82015-01-05 15:51:13 -0800371 return nullptr;
John Reck28ad7b52014-04-07 16:59:25 -0700372}
373
Andreas Gampe64bb4132014-11-22 00:35:09 +0000374template <typename T>
375void UNUSED(T t) {}
376
John Reck28ad7b52014-04-07 16:59:25 -0700377void RenderProxy::fence() {
378 SETUP_TASK(fence);
Andreas Gampe1e196742014-11-10 15:23:43 -0800379 UNUSED(args);
John Reck28ad7b52014-04-07 16:59:25 -0700380 postAndWait(task);
381}
382
Thomas Buhotc0a0e1a2016-01-18 10:31:58 +0100383void RenderProxy::staticFence() {
384 SETUP_TASK(fence);
385 UNUSED(args);
386 staticPostAndWait(task);
387}
388
John Reckf47a5942014-06-30 16:20:04 -0700389CREATE_BRIDGE1(stopDrawing, CanvasContext* context) {
390 args->context->stopDrawing();
Chris Craikd41c4d82015-01-05 15:51:13 -0800391 return nullptr;
John Reckf47a5942014-06-30 16:20:04 -0700392}
393
394void RenderProxy::stopDrawing() {
395 SETUP_TASK(stopDrawing);
396 args->context = mContext;
397 postAndWait(task);
398}
399
John Recka5dda642014-05-22 15:43:54 -0700400CREATE_BRIDGE1(notifyFramePending, CanvasContext* context) {
401 args->context->notifyFramePending();
Chris Craikd41c4d82015-01-05 15:51:13 -0800402 return nullptr;
John Recka5dda642014-05-22 15:43:54 -0700403}
404
405void RenderProxy::notifyFramePending() {
406 SETUP_TASK(notifyFramePending);
407 args->context = mContext;
408 mRenderThread.queueAtFront(task);
409}
410
John Reck7f2e5e32015-05-05 11:00:53 -0700411CREATE_BRIDGE4(dumpProfileInfo, CanvasContext* context, RenderThread* thread,
412 int fd, int dumpFlags) {
John Reckfe5e7b72014-05-23 17:42:28 -0700413 args->context->profiler().dumpData(args->fd);
Chris Craik53e51e42015-06-01 10:35:35 -0700414 if (args->dumpFlags & DumpFlags::FrameStats) {
John Reckba6adf62015-02-19 14:36:50 -0800415 args->context->dumpFrames(args->fd);
416 }
Chris Craik53e51e42015-06-01 10:35:35 -0700417 if (args->dumpFlags & DumpFlags::Reset) {
John Reckba6adf62015-02-19 14:36:50 -0800418 args->context->resetFrameStats();
419 }
John Recka41f2442016-04-07 16:36:57 -0700420 if (args->dumpFlags & DumpFlags::JankStats) {
421 args->thread->jankTracker().dump(args->fd);
422 }
Chris Craikd41c4d82015-01-05 15:51:13 -0800423 return nullptr;
John Reckfe5e7b72014-05-23 17:42:28 -0700424}
425
John Reckba6adf62015-02-19 14:36:50 -0800426void RenderProxy::dumpProfileInfo(int fd, int dumpFlags) {
John Reckfe5e7b72014-05-23 17:42:28 -0700427 SETUP_TASK(dumpProfileInfo);
428 args->context = mContext;
John Reck7f2e5e32015-05-05 11:00:53 -0700429 args->thread = &mRenderThread;
John Reckfe5e7b72014-05-23 17:42:28 -0700430 args->fd = fd;
John Reckba6adf62015-02-19 14:36:50 -0800431 args->dumpFlags = dumpFlags;
John Reckfe5e7b72014-05-23 17:42:28 -0700432 postAndWait(task);
433}
434
John Reck7f2e5e32015-05-05 11:00:53 -0700435CREATE_BRIDGE1(resetProfileInfo, CanvasContext* context) {
436 args->context->resetFrameStats();
437 return nullptr;
438}
439
440void RenderProxy::resetProfileInfo() {
441 SETUP_TASK(resetProfileInfo);
442 args->context = mContext;
443 postAndWait(task);
444}
445
John Reckf1480762016-07-03 18:28:25 -0700446CREATE_BRIDGE2(frameTimePercentile, RenderThread* thread, int percentile) {
447 return reinterpret_cast<void*>(static_cast<uintptr_t>(
448 args->thread->jankTracker().findPercentile(args->percentile)));
449}
450
451uint32_t RenderProxy::frameTimePercentile(int p) {
452 SETUP_TASK(frameTimePercentile);
453 args->thread = &mRenderThread;
454 args->percentile = p;
455 return static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
456 postAndWait(task)));
457}
458
John Reckba6adf62015-02-19 14:36:50 -0800459CREATE_BRIDGE2(dumpGraphicsMemory, int fd, RenderThread* thread) {
460 args->thread->jankTracker().dump(args->fd);
461
Chris Craik2ae07332015-01-21 14:22:39 -0800462 FILE *file = fdopen(args->fd, "a");
463 if (Caches::hasInstance()) {
464 String8 cachesLog;
465 Caches::getInstance().dumpMemoryUsage(cachesLog);
466 fprintf(file, "\nCaches:\n%s\n", cachesLog.string());
467 } else {
468 fprintf(file, "\nNo caches instance.\n");
469 }
Chris Craikff3edce2016-01-14 10:04:08 -0800470 fprintf(file, "\nPipeline=FrameBuilder\n");
Chris Craik2ae07332015-01-21 14:22:39 -0800471 fflush(file);
Chris Craikd41c4d82015-01-05 15:51:13 -0800472 return nullptr;
John Reck0e89e2b2014-10-31 14:49:06 -0700473}
474
Chris Craik2ae07332015-01-21 14:22:39 -0800475void RenderProxy::dumpGraphicsMemory(int fd) {
youngmin0822.leec80c9ad2015-03-20 21:22:32 +0900476 if (!RenderThread::hasInstance()) return;
Chris Craik2ae07332015-01-21 14:22:39 -0800477 SETUP_TASK(dumpGraphicsMemory);
John Reck0e89e2b2014-10-31 14:49:06 -0700478 args->fd = fd;
John Reckba6adf62015-02-19 14:36:50 -0800479 args->thread = &RenderThread::getInstance();
John Reck0e89e2b2014-10-31 14:49:06 -0700480 staticPostAndWait(task);
481}
482
John Reckedc524c2015-03-18 15:24:33 -0700483CREATE_BRIDGE2(setProcessStatsBuffer, RenderThread* thread, int fd) {
484 args->thread->jankTracker().switchStorageToAshmem(args->fd);
485 close(args->fd);
486 return nullptr;
487}
488
489void RenderProxy::setProcessStatsBuffer(int fd) {
490 SETUP_TASK(setProcessStatsBuffer);
John Reckdf1742e2017-01-19 15:56:21 -0800491 auto& rt = RenderThread::getInstance();
492 args->thread = &rt;
John Reckedc524c2015-03-18 15:24:33 -0700493 args->fd = dup(fd);
John Reckdf1742e2017-01-19 15:56:21 -0800494 rt.queue(task);
495}
496
497CREATE_BRIDGE1(rotateProcessStatsBuffer, RenderThread* thread) {
498 args->thread->jankTracker().rotateStorage();
499 return nullptr;
500}
501
502void RenderProxy::rotateProcessStatsBuffer() {
503 SETUP_TASK(rotateProcessStatsBuffer);
504 auto& rt = RenderThread::getInstance();
505 args->thread = &rt;
506 rt.queue(task);
John Reckedc524c2015-03-18 15:24:33 -0700507}
508
Tim Murray33eb07f2016-06-10 10:03:20 -0700509int RenderProxy::getRenderThreadTid() {
510 return mRenderThread.getTid();
511}
512
Skuhneea7a7fb2015-08-28 07:10:31 -0700513CREATE_BRIDGE3(addRenderNode, CanvasContext* context, RenderNode* node, bool placeFront) {
514 args->context->addRenderNode(args->node, args->placeFront);
515 return nullptr;
516}
517
518void RenderProxy::addRenderNode(RenderNode* node, bool placeFront) {
519 SETUP_TASK(addRenderNode);
520 args->context = mContext;
521 args->node = node;
522 args->placeFront = placeFront;
523 post(task);
524}
525
526CREATE_BRIDGE2(removeRenderNode, CanvasContext* context, RenderNode* node) {
527 args->context->removeRenderNode(args->node);
528 return nullptr;
529}
530
531void RenderProxy::removeRenderNode(RenderNode* node) {
532 SETUP_TASK(removeRenderNode);
533 args->context = mContext;
534 args->node = node;
535 post(task);
536}
537
538CREATE_BRIDGE2(drawRenderNode, CanvasContext* context, RenderNode* node) {
539 args->context->prepareAndDraw(args->node);
540 return nullptr;
541}
542
543void RenderProxy::drawRenderNode(RenderNode* node) {
544 SETUP_TASK(drawRenderNode);
545 args->context = mContext;
546 args->node = node;
547 // Be pseudo-thread-safe and don't use any member variables
548 staticPostAndWait(task);
549}
550
Skuhneb8160872015-09-22 09:51:39 -0700551CREATE_BRIDGE5(setContentDrawBounds, CanvasContext* context, int left, int top,
Skuhneea7a7fb2015-08-28 07:10:31 -0700552 int right, int bottom) {
Skuhneb8160872015-09-22 09:51:39 -0700553 args->context->setContentDrawBounds(args->left, args->top, args->right, args->bottom);
Skuhneea7a7fb2015-08-28 07:10:31 -0700554 return nullptr;
555}
556
Skuhneb8160872015-09-22 09:51:39 -0700557void RenderProxy::setContentDrawBounds(int left, int top, int right, int bottom) {
558 SETUP_TASK(setContentDrawBounds);
Skuhneea7a7fb2015-08-28 07:10:31 -0700559 args->context = mContext;
560 args->left = left;
561 args->top = top;
562 args->right = right;
563 args->bottom = bottom;
564 staticPostAndWait(task);
565}
566
John Recke248bd12015-08-05 13:53:53 -0700567CREATE_BRIDGE1(serializeDisplayListTree, CanvasContext* context) {
568 args->context->serializeDisplayListTree();
569 return nullptr;
570}
571
572void RenderProxy::serializeDisplayListTree() {
573 SETUP_TASK(serializeDisplayListTree);
574 args->context = mContext;
575 post(task);
576}
577
Andres Morales910beb82016-02-02 16:19:40 -0800578CREATE_BRIDGE2(addFrameMetricsObserver, CanvasContext* context,
579 FrameMetricsObserver* frameStatsObserver) {
580 args->context->addFrameMetricsObserver(args->frameStatsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800581 if (args->frameStatsObserver != nullptr) {
582 args->frameStatsObserver->decStrong(args->context);
583 }
584 return nullptr;
585}
586
Andres Morales910beb82016-02-02 16:19:40 -0800587void RenderProxy::addFrameMetricsObserver(FrameMetricsObserver* observer) {
588 SETUP_TASK(addFrameMetricsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800589 args->context = mContext;
590 args->frameStatsObserver = observer;
591 if (observer != nullptr) {
592 observer->incStrong(mContext);
593 }
594 post(task);
595}
596
Andres Morales910beb82016-02-02 16:19:40 -0800597CREATE_BRIDGE2(removeFrameMetricsObserver, CanvasContext* context,
598 FrameMetricsObserver* frameStatsObserver) {
599 args->context->removeFrameMetricsObserver(args->frameStatsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800600 if (args->frameStatsObserver != nullptr) {
601 args->frameStatsObserver->decStrong(args->context);
602 }
603 return nullptr;
604}
605
Andres Morales910beb82016-02-02 16:19:40 -0800606void RenderProxy::removeFrameMetricsObserver(FrameMetricsObserver* observer) {
607 SETUP_TASK(removeFrameMetricsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800608 args->context = mContext;
609 args->frameStatsObserver = observer;
610 if (observer != nullptr) {
611 observer->incStrong(mContext);
612 }
613 post(task);
614}
615
John Reck95801462016-09-01 09:44:09 -0700616CREATE_BRIDGE4(copySurfaceInto, RenderThread* thread,
617 Surface* surface, Rect srcRect, SkBitmap* bitmap) {
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500618 return (void*)args->thread->readback().copySurfaceInto(*args->surface,
619 args->srcRect, args->bitmap);
John Reck10dd0582016-03-31 16:36:16 -0700620}
621
John Reck95801462016-09-01 09:44:09 -0700622int RenderProxy::copySurfaceInto(sp<Surface>& surface, int left, int top,
623 int right, int bottom, SkBitmap* bitmap) {
John Reck10dd0582016-03-31 16:36:16 -0700624 SETUP_TASK(copySurfaceInto);
625 args->bitmap = bitmap;
626 args->surface = surface.get();
627 args->thread = &RenderThread::getInstance();
John Reck95801462016-09-01 09:44:09 -0700628 args->srcRect.set(left, top, right, bottom);
John Recke94cbc72016-04-25 13:03:44 -0700629 return static_cast<int>(
630 reinterpret_cast<intptr_t>( staticPostAndWait(task) ));
John Reck10dd0582016-03-31 16:36:16 -0700631}
632
sergeyvec4a4b12016-10-20 18:39:04 -0700633CREATE_BRIDGE2(prepareToDraw, RenderThread* thread, Bitmap* bitmap) {
Derek Sollenbergerdaf72292016-10-25 12:09:18 -0400634 CanvasContext::prepareToDraw(*args->thread, args->bitmap);
sergeyvec4a4b12016-10-20 18:39:04 -0700635 args->bitmap->unref();
John Reck43871902016-08-01 14:39:24 -0700636 args->bitmap = nullptr;
637 return nullptr;
638}
639
sergeyvec4a4b12016-10-20 18:39:04 -0700640void RenderProxy::prepareToDraw(Bitmap& bitmap) {
John Reck43871902016-08-01 14:39:24 -0700641 // If we haven't spun up a hardware accelerated window yet, there's no
642 // point in precaching these bitmaps as it can't impact jank.
643 // We also don't know if we even will spin up a hardware-accelerated
644 // window or not.
645 if (!RenderThread::hasInstance()) return;
646 RenderThread* renderThread = &RenderThread::getInstance();
647 SETUP_TASK(prepareToDraw);
648 args->thread = renderThread;
sergeyvec4a4b12016-10-20 18:39:04 -0700649 bitmap.ref();
650 args->bitmap = &bitmap;
John Reck43871902016-08-01 14:39:24 -0700651 nsecs_t lastVsync = renderThread->timeLord().latestVsync();
652 nsecs_t estimatedNextVsync = lastVsync + renderThread->timeLord().frameIntervalNanos();
653 nsecs_t timeToNextVsync = estimatedNextVsync - systemTime(CLOCK_MONOTONIC);
654 // We expect the UI thread to take 4ms and for RT to be active from VSYNC+4ms to
655 // VSYNC+12ms or so, so aim for the gap during which RT is expected to
656 // be idle
657 // TODO: Make this concept a first-class supported thing? RT could use
658 // knowledge of pending draws to better schedule this task
659 if (timeToNextVsync > -6_ms && timeToNextVsync < 1_ms) {
660 renderThread->queueAt(task, estimatedNextVsync + 8_ms);
661 } else {
662 renderThread->queue(task);
663 }
664}
665
sergeyv694d4992016-10-27 10:23:13 -0700666CREATE_BRIDGE2(allocateHardwareBitmap, RenderThread* thread, SkBitmap* bitmap) {
667 sk_sp<Bitmap> hardwareBitmap = Bitmap::allocateHardwareBitmap(*args->thread, *args->bitmap);
668 return hardwareBitmap.release();
669}
670
671sk_sp<Bitmap> RenderProxy::allocateHardwareBitmap(SkBitmap& bitmap) {
672 SETUP_TASK(allocateHardwareBitmap);
673 args->bitmap = &bitmap;
674 args->thread = &RenderThread::getInstance();
675 sk_sp<Bitmap> hardwareBitmap(reinterpret_cast<Bitmap*>(staticPostAndWait(task)));
676 return hardwareBitmap;
677}
678
sergeyv59eecb522016-11-17 17:54:57 -0800679CREATE_BRIDGE3(copyGraphicBufferInto, RenderThread* thread, GraphicBuffer* buffer, SkBitmap* bitmap) {
680 return (void*) args->thread->readback().copyGraphicBufferInto(args->buffer, args->bitmap);
681}
682
683int RenderProxy::copyGraphicBufferInto(GraphicBuffer* buffer, SkBitmap* bitmap) {
Stan Iliev6983bc42017-02-02 14:11:53 -0500684 RenderThread& thread = RenderThread::getInstance();
685 if (Properties::isSkiaEnabled() && gettid() == thread.getTid()) {
686 //TODO: fix everything that hits this. We should never be triggering a readback ourselves.
687 return (int) thread.readback().copyGraphicBufferInto(buffer, bitmap);
688 } else {
689 SETUP_TASK(copyGraphicBufferInto);
690 args->thread = &thread;
691 args->bitmap = bitmap;
692 args->buffer = buffer;
693 return static_cast<int>(reinterpret_cast<intptr_t>(staticPostAndWait(task)));
694 }
sergeyv59eecb522016-11-17 17:54:57 -0800695}
696
John Reck9a814872017-05-22 15:04:21 -0700697CREATE_BRIDGE2(onBitmapDestroyed, RenderThread* thread, uint32_t pixelRefId) {
698 args->thread->renderState().onBitmapDestroyed(args->pixelRefId);
699 return nullptr;
700}
701
702void RenderProxy::onBitmapDestroyed(uint32_t pixelRefId) {
703 if (!RenderThread::hasInstance()) return;
704 SETUP_TASK(onBitmapDestroyed);
705 RenderThread& thread = RenderThread::getInstance();
706 args->thread = &thread;
707 args->pixelRefId = pixelRefId;
708 thread.queue(task);
709}
710
John Reck4f02bf42014-01-03 18:09:17 -0800711void RenderProxy::post(RenderTask* task) {
712 mRenderThread.queue(task);
713}
714
715void* RenderProxy::postAndWait(MethodInvokeRenderTask* task) {
716 void* retval;
717 task->setReturnPtr(&retval);
John Reckcba287b2015-11-10 12:52:44 -0800718 SignalingRenderTask syncTask(task, &mSyncMutex, &mSyncCondition);
719 AutoMutex _lock(mSyncMutex);
720 mRenderThread.queue(&syncTask);
Tom Cherry298a1462017-02-28 14:07:09 -0800721 while (!syncTask.hasRun()) {
722 mSyncCondition.wait(mSyncMutex);
723 }
John Reck4f02bf42014-01-03 18:09:17 -0800724 return retval;
725}
726
John Reck0e89e2b2014-10-31 14:49:06 -0700727void* RenderProxy::staticPostAndWait(MethodInvokeRenderTask* task) {
728 RenderThread& thread = RenderThread::getInstance();
Stan Iliev6983bc42017-02-02 14:11:53 -0500729 LOG_ALWAYS_FATAL_IF(gettid() == thread.getTid());
John Reck0e89e2b2014-10-31 14:49:06 -0700730 void* retval;
731 task->setReturnPtr(&retval);
Chris Craik0a24b142015-10-19 17:10:19 -0700732 thread.queueAndWait(task);
John Reck0e89e2b2014-10-31 14:49:06 -0700733 return retval;
734}
735
John Reck4f02bf42014-01-03 18:09:17 -0800736} /* namespace renderthread */
737} /* namespace uirenderer */
738} /* namespace android */