blob: 16dd108488b24446b71087c6b5823b174b803923 [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"
21#include "LayerRenderer.h"
22#include "Rect.h"
23#include "renderthread/CanvasContext.h"
24#include "renderthread/RenderTask.h"
25#include "renderthread/RenderThread.h"
26#include "utils/Macros.h"
John Reck4f02bf42014-01-03 18:09:17 -080027
28namespace android {
29namespace uirenderer {
30namespace renderthread {
31
32#define ARGS(method) method ## Args
33
John Reck19b6bcf2014-02-14 20:03:38 -080034#define CREATE_BRIDGE0(name) CREATE_BRIDGE(name,,,,,,,,)
John Reck4f02bf42014-01-03 18:09:17 -080035#define CREATE_BRIDGE1(name, a1) CREATE_BRIDGE(name, a1,,,,,,,)
36#define CREATE_BRIDGE2(name, a1, a2) CREATE_BRIDGE(name, a1,a2,,,,,,)
37#define CREATE_BRIDGE3(name, a1, a2, a3) CREATE_BRIDGE(name, a1,a2,a3,,,,,)
38#define CREATE_BRIDGE4(name, a1, a2, a3, a4) CREATE_BRIDGE(name, a1,a2,a3,a4,,,,)
Chris Craik797b95b2014-05-20 18:10:25 -070039#define CREATE_BRIDGE5(name, a1, a2, a3, a4, a5) CREATE_BRIDGE(name, a1,a2,a3,a4,a5,,,)
Chris Craik058fc642014-07-23 18:19:28 -070040#define CREATE_BRIDGE6(name, a1, a2, a3, a4, a5, a6) CREATE_BRIDGE(name, a1,a2,a3,a4,a5,a6,,)
41#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 -080042#define CREATE_BRIDGE(name, a1, a2, a3, a4, a5, a6, a7, a8) \
43 typedef struct { \
44 a1; a2; a3; a4; a5; a6; a7; a8; \
45 } ARGS(name); \
46 static void* Bridge_ ## name(ARGS(name)* args)
47
48#define SETUP_TASK(method) \
49 LOG_ALWAYS_FATAL_IF( METHOD_INVOKE_PAYLOAD_SIZE < sizeof(ARGS(method)), \
Mark Salyzyn546f3532014-06-10 12:29:14 -070050 "METHOD_INVOKE_PAYLOAD_SIZE %zu is smaller than sizeof(" #method "Args) %zu", \
John Reck4f02bf42014-01-03 18:09:17 -080051 METHOD_INVOKE_PAYLOAD_SIZE, sizeof(ARGS(method))); \
John Recke2c45522014-04-07 17:31:44 -070052 MethodInvokeRenderTask* task = new MethodInvokeRenderTask((RunnableMethod) Bridge_ ## method); \
John Reck4f02bf42014-01-03 18:09:17 -080053 ARGS(method) *args = (ARGS(method) *) task->payload()
54
Chris Craik53e51e42015-06-01 10:35:35 -070055namespace DumpFlags {
56 enum {
57 FrameStats = 1 << 0,
58 Reset = 1 << 1,
John Reck66010802016-03-30 14:19:44 -070059 JankStats = 1 << 2,
Chris Craik53e51e42015-06-01 10:35:35 -070060 };
John Reckc87be992015-02-20 10:57:22 -080061};
John Reckba6adf62015-02-19 14:36:50 -080062
John Reck119907c2014-08-14 09:02:01 -070063CREATE_BRIDGE4(createContext, RenderThread* thread, bool translucent,
64 RenderNode* rootRenderNode, IContextFactory* contextFactory) {
65 return new CanvasContext(*args->thread, args->translucent,
66 args->rootRenderNode, args->contextFactory);
John Reck4f02bf42014-01-03 18:09:17 -080067}
68
John Reck119907c2014-08-14 09:02:01 -070069RenderProxy::RenderProxy(bool translucent, RenderNode* rootRenderNode, IContextFactory* contextFactory)
John Reck4f02bf42014-01-03 18:09:17 -080070 : mRenderThread(RenderThread::getInstance())
Chris Craikd41c4d82015-01-05 15:51:13 -080071 , mContext(nullptr) {
John Reck4f02bf42014-01-03 18:09:17 -080072 SETUP_TASK(createContext);
73 args->translucent = translucent;
John Recke45b1fd2014-04-15 09:50:16 -070074 args->rootRenderNode = rootRenderNode;
John Reck3b202512014-06-23 13:13:08 -070075 args->thread = &mRenderThread;
John Reck119907c2014-08-14 09:02:01 -070076 args->contextFactory = contextFactory;
John Reck4f02bf42014-01-03 18:09:17 -080077 mContext = (CanvasContext*) postAndWait(task);
Skuhneea7a7fb2015-08-28 07:10:31 -070078 mDrawFrameTask.setContext(&mRenderThread, mContext, rootRenderNode);
John Reck4f02bf42014-01-03 18:09:17 -080079}
80
81RenderProxy::~RenderProxy() {
82 destroyContext();
83}
84
85CREATE_BRIDGE1(destroyContext, CanvasContext* context) {
86 delete args->context;
Chris Craikd41c4d82015-01-05 15:51:13 -080087 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -080088}
89
90void RenderProxy::destroyContext() {
91 if (mContext) {
92 SETUP_TASK(destroyContext);
93 args->context = mContext;
Chris Craikd41c4d82015-01-05 15:51:13 -080094 mContext = nullptr;
Skuhneea7a7fb2015-08-28 07:10:31 -070095 mDrawFrameTask.setContext(nullptr, nullptr, nullptr);
John Reck668f0e32014-03-26 15:10:40 -070096 // This is also a fence as we need to be certain that there are no
97 // outstanding mDrawFrame tasks posted before it is destroyed
98 postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -080099 }
100}
101
John Reck1125d1f2014-10-23 11:02:19 -0700102CREATE_BRIDGE2(setSwapBehavior, CanvasContext* context, SwapBehavior swapBehavior) {
103 args->context->setSwapBehavior(args->swapBehavior);
Chris Craikd41c4d82015-01-05 15:51:13 -0800104 return nullptr;
John Reck1125d1f2014-10-23 11:02:19 -0700105}
106
107void RenderProxy::setSwapBehavior(SwapBehavior swapBehavior) {
108 SETUP_TASK(setSwapBehavior);
109 args->context = mContext;
110 args->swapBehavior = swapBehavior;
111 post(task);
112}
113
John Reckfe5e7b72014-05-23 17:42:28 -0700114CREATE_BRIDGE1(loadSystemProperties, CanvasContext* context) {
John Recke4280ba2014-05-05 16:39:37 -0700115 bool needsRedraw = false;
116 if (Caches::hasInstance()) {
Chris Craik2507c342015-05-04 14:36:49 -0700117 needsRedraw = Properties::load();
John Recke4280ba2014-05-05 16:39:37 -0700118 }
Chris Craik2507c342015-05-04 14:36:49 -0700119 if (args->context->profiler().consumeProperties()) {
John Reckfe5e7b72014-05-23 17:42:28 -0700120 needsRedraw = true;
121 }
John Recke4280ba2014-05-05 16:39:37 -0700122 return (void*) needsRedraw;
123}
124
125bool RenderProxy::loadSystemProperties() {
126 SETUP_TASK(loadSystemProperties);
John Reckfe5e7b72014-05-23 17:42:28 -0700127 args->context = mContext;
John Recke4280ba2014-05-05 16:39:37 -0700128 return (bool) postAndWait(task);
129}
130
John Reckb36016c2015-03-11 08:50:53 -0700131CREATE_BRIDGE2(setName, CanvasContext* context, const char* name) {
132 args->context->setName(std::string(args->name));
133 return nullptr;
134}
135
136void RenderProxy::setName(const char* name) {
137 SETUP_TASK(setName);
138 args->context = mContext;
139 args->name = name;
Chris Craik2507c342015-05-04 14:36:49 -0700140 postAndWait(task); // block since name/value pointers owned by caller
John Reckb36016c2015-03-11 08:50:53 -0700141}
142
John Reckf6481082016-02-02 15:18:23 -0800143CREATE_BRIDGE2(initialize, CanvasContext* context, Surface* surface) {
144 args->context->initialize(args->surface);
Thomas Buhot0bcd0cb2015-12-04 12:18:03 +0100145 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800146}
147
John Reckf6481082016-02-02 15:18:23 -0800148void RenderProxy::initialize(const sp<Surface>& surface) {
John Reck4f02bf42014-01-03 18:09:17 -0800149 SETUP_TASK(initialize);
150 args->context = mContext;
John Reckf6481082016-02-02 15:18:23 -0800151 args->surface = surface.get();
Thomas Buhot0bcd0cb2015-12-04 12:18:03 +0100152 post(task);
John Reck4f02bf42014-01-03 18:09:17 -0800153}
154
John Reckf6481082016-02-02 15:18:23 -0800155CREATE_BRIDGE2(updateSurface, CanvasContext* context, Surface* surface) {
156 args->context->updateSurface(args->surface);
Chris Craikd41c4d82015-01-05 15:51:13 -0800157 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800158}
159
John Reckf6481082016-02-02 15:18:23 -0800160void RenderProxy::updateSurface(const sp<Surface>& surface) {
John Reck4f02bf42014-01-03 18:09:17 -0800161 SETUP_TASK(updateSurface);
162 args->context = mContext;
John Reckf6481082016-02-02 15:18:23 -0800163 args->surface = surface.get();
John Reckf7d9c1d2014-04-09 10:01:03 -0700164 postAndWait(task);
165}
166
John Reckf6481082016-02-02 15:18:23 -0800167CREATE_BRIDGE2(pauseSurface, CanvasContext* context, Surface* surface) {
168 return (void*) args->context->pauseSurface(args->surface);
John Reckf7d9c1d2014-04-09 10:01:03 -0700169}
170
John Reckf6481082016-02-02 15:18:23 -0800171bool RenderProxy::pauseSurface(const sp<Surface>& surface) {
John Reckf7d9c1d2014-04-09 10:01:03 -0700172 SETUP_TASK(pauseSurface);
173 args->context = mContext;
John Reckf6481082016-02-02 15:18:23 -0800174 args->surface = surface.get();
John Reck01a5ea32014-12-03 13:01:07 -0800175 return (bool) postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -0800176}
177
Alan Viverette50210d92015-05-14 18:05:36 -0700178CREATE_BRIDGE6(setup, CanvasContext* context, int width, int height,
179 float lightRadius, uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) {
180 args->context->setup(args->width, args->height, args->lightRadius,
Chris Craik058fc642014-07-23 18:19:28 -0700181 args->ambientShadowAlpha, args->spotShadowAlpha);
Chris Craikd41c4d82015-01-05 15:51:13 -0800182 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800183}
184
Alan Viverette50210d92015-05-14 18:05:36 -0700185void RenderProxy::setup(int width, int height, float lightRadius,
John Reckb36016c2015-03-11 08:50:53 -0700186 uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) {
John Reck4f02bf42014-01-03 18:09:17 -0800187 SETUP_TASK(setup);
188 args->context = mContext;
189 args->width = width;
190 args->height = height;
Chris Craik797b95b2014-05-20 18:10:25 -0700191 args->lightRadius = lightRadius;
Chris Craik058fc642014-07-23 18:19:28 -0700192 args->ambientShadowAlpha = ambientShadowAlpha;
193 args->spotShadowAlpha = spotShadowAlpha;
John Reck4f02bf42014-01-03 18:09:17 -0800194 post(task);
195}
196
Alan Viverette50210d92015-05-14 18:05:36 -0700197CREATE_BRIDGE2(setLightCenter, CanvasContext* context, Vector3 lightCenter) {
198 args->context->setLightCenter(args->lightCenter);
199 return nullptr;
200}
201
202void RenderProxy::setLightCenter(const Vector3& lightCenter) {
203 SETUP_TASK(setLightCenter);
204 args->context = mContext;
205 args->lightCenter = lightCenter;
206 post(task);
207}
208
John Reck63a06672014-05-07 13:45:54 -0700209CREATE_BRIDGE2(setOpaque, CanvasContext* context, bool opaque) {
210 args->context->setOpaque(args->opaque);
Chris Craikd41c4d82015-01-05 15:51:13 -0800211 return nullptr;
John Reck63a06672014-05-07 13:45:54 -0700212}
213
214void RenderProxy::setOpaque(bool opaque) {
215 SETUP_TASK(setOpaque);
216 args->context = mContext;
217 args->opaque = opaque;
218 post(task);
219}
220
John Reckba6adf62015-02-19 14:36:50 -0800221int64_t* RenderProxy::frameInfo() {
222 return mDrawFrameTask.frameInfo();
223}
224
225int RenderProxy::syncAndDrawFrame() {
226 return mDrawFrameTask.drawFrame();
John Reck4f02bf42014-01-03 18:09:17 -0800227}
228
John Reck17035b02014-09-03 07:39:53 -0700229CREATE_BRIDGE1(destroy, CanvasContext* context) {
230 args->context->destroy();
Chris Craikd41c4d82015-01-05 15:51:13 -0800231 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800232}
233
John Reck17035b02014-09-03 07:39:53 -0700234void RenderProxy::destroy() {
235 SETUP_TASK(destroy);
John Reck4f02bf42014-01-03 18:09:17 -0800236 args->context = mContext;
John Reckfae904d2014-04-14 11:01:57 -0700237 // destroyCanvasAndSurface() needs a fence as when it returns the
238 // underlying BufferQueue is going to be released from under
239 // the render thread.
240 postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -0800241}
242
John Reck3b202512014-06-23 13:13:08 -0700243CREATE_BRIDGE2(invokeFunctor, RenderThread* thread, Functor* functor) {
244 CanvasContext::invokeFunctor(*args->thread, args->functor);
Chris Craikd41c4d82015-01-05 15:51:13 -0800245 return nullptr;
John Reck0d1f6342014-03-28 20:30:27 -0700246}
247
248void RenderProxy::invokeFunctor(Functor* functor, bool waitForCompletion) {
John Reckd3d8daf2014-04-10 15:00:13 -0700249 ATRACE_CALL();
John Reck3b202512014-06-23 13:13:08 -0700250 RenderThread& thread = RenderThread::getInstance();
John Reck0d1f6342014-03-28 20:30:27 -0700251 SETUP_TASK(invokeFunctor);
John Reck3b202512014-06-23 13:13:08 -0700252 args->thread = &thread;
John Reck0d1f6342014-03-28 20:30:27 -0700253 args->functor = functor;
254 if (waitForCompletion) {
John Reck3b202512014-06-23 13:13:08 -0700255 // waitForCompletion = true is expected to be fairly rare and only
256 // happen in destruction. Thus it should be fine to temporarily
257 // create a Mutex
John Reck0e89e2b2014-10-31 14:49:06 -0700258 staticPostAndWait(task);
John Reck0d1f6342014-03-28 20:30:27 -0700259 } else {
John Reck3b202512014-06-23 13:13:08 -0700260 thread.queue(task);
John Reck0d1f6342014-03-28 20:30:27 -0700261 }
262}
263
John Reckfc53ef272014-02-11 10:40:25 -0800264CREATE_BRIDGE2(runWithGlContext, CanvasContext* context, RenderTask* task) {
265 args->context->runWithGlContext(args->task);
Chris Craikd41c4d82015-01-05 15:51:13 -0800266 return nullptr;
John Reckfc53ef272014-02-11 10:40:25 -0800267}
268
269void RenderProxy::runWithGlContext(RenderTask* gltask) {
270 SETUP_TASK(runWithGlContext);
271 args->context = mContext;
272 args->task = gltask;
273 postAndWait(task);
274}
275
John Reckc36df952015-07-29 10:09:36 -0700276CREATE_BRIDGE1(createTextureLayer, CanvasContext* context) {
John Reck1949e792014-04-08 15:18:56 -0700277 Layer* layer = args->context->createTextureLayer();
Chris Craikd41c4d82015-01-05 15:51:13 -0800278 if (!layer) return nullptr;
John Reckc36df952015-07-29 10:09:36 -0700279 return new DeferredLayerUpdater(layer);
John Reck19b6bcf2014-02-14 20:03:38 -0800280}
281
282DeferredLayerUpdater* RenderProxy::createTextureLayer() {
283 SETUP_TASK(createTextureLayer);
John Reck1949e792014-04-08 15:18:56 -0700284 args->context = mContext;
John Reck19b6bcf2014-02-14 20:03:38 -0800285 void* retval = postAndWait(task);
286 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(retval);
John Reck19b6bcf2014-02-14 20:03:38 -0800287 return layer;
288}
289
John Reck3e824952014-08-20 10:08:39 -0700290CREATE_BRIDGE2(buildLayer, CanvasContext* context, RenderNode* node) {
291 args->context->buildLayer(args->node);
Chris Craikd41c4d82015-01-05 15:51:13 -0800292 return nullptr;
John Reck3e824952014-08-20 10:08:39 -0700293}
294
295void RenderProxy::buildLayer(RenderNode* node) {
296 SETUP_TASK(buildLayer);
297 args->context = mContext;
298 args->node = node;
299 postAndWait(task);
300}
301
John Reck19b6bcf2014-02-14 20:03:38 -0800302CREATE_BRIDGE3(copyLayerInto, CanvasContext* context, DeferredLayerUpdater* layer,
303 SkBitmap* bitmap) {
304 bool success = args->context->copyLayerInto(args->layer, args->bitmap);
305 return (void*) success;
306}
307
John Reck3731dc22015-04-13 15:20:29 -0700308bool RenderProxy::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap& bitmap) {
John Reck19b6bcf2014-02-14 20:03:38 -0800309 SETUP_TASK(copyLayerInto);
310 args->context = mContext;
311 args->layer = layer;
John Reck3731dc22015-04-13 15:20:29 -0700312 args->bitmap = &bitmap;
John Reck19b6bcf2014-02-14 20:03:38 -0800313 return (bool) postAndWait(task);
314}
315
John Reckd72e0a32014-05-29 18:56:11 -0700316void RenderProxy::pushLayerUpdate(DeferredLayerUpdater* layer) {
317 mDrawFrameTask.pushLayerUpdate(layer);
318}
319
320void RenderProxy::cancelLayerUpdate(DeferredLayerUpdater* layer) {
321 mDrawFrameTask.removeLayerUpdate(layer);
John Reck19b6bcf2014-02-14 20:03:38 -0800322}
323
John Reck918ad522014-06-27 14:45:25 -0700324CREATE_BRIDGE1(detachSurfaceTexture, DeferredLayerUpdater* layer) {
325 args->layer->detachSurfaceTexture();
Chris Craikd41c4d82015-01-05 15:51:13 -0800326 return nullptr;
John Reck918ad522014-06-27 14:45:25 -0700327}
328
329void RenderProxy::detachSurfaceTexture(DeferredLayerUpdater* layer) {
330 SETUP_TASK(detachSurfaceTexture);
331 args->layer = layer;
332 postAndWait(task);
333}
334
John Reckf47a5942014-06-30 16:20:04 -0700335CREATE_BRIDGE1(destroyHardwareResources, CanvasContext* context) {
336 args->context->destroyHardwareResources();
Chris Craikd41c4d82015-01-05 15:51:13 -0800337 return nullptr;
John Recke1628b72014-05-23 15:11:19 -0700338}
339
John Reckf47a5942014-06-30 16:20:04 -0700340void RenderProxy::destroyHardwareResources() {
341 SETUP_TASK(destroyHardwareResources);
John Recke1628b72014-05-23 15:11:19 -0700342 args->context = mContext;
John Recke1628b72014-05-23 15:11:19 -0700343 post(task);
344}
345
Chris Craik2507c342015-05-04 14:36:49 -0700346CREATE_BRIDGE2(trimMemory, RenderThread* thread, int level) {
John Reckf47a5942014-06-30 16:20:04 -0700347 CanvasContext::trimMemory(*args->thread, args->level);
Chris Craikd41c4d82015-01-05 15:51:13 -0800348 return nullptr;
John Reckf47a5942014-06-30 16:20:04 -0700349}
350
351void RenderProxy::trimMemory(int level) {
John Reckcd3a22c2014-08-06 13:33:59 -0700352 // Avoid creating a RenderThread to do a trimMemory.
353 if (RenderThread::hasInstance()) {
354 RenderThread& thread = RenderThread::getInstance();
Chris Craik2507c342015-05-04 14:36:49 -0700355 SETUP_TASK(trimMemory);
John Reckcd3a22c2014-08-06 13:33:59 -0700356 args->thread = &thread;
357 args->level = level;
358 thread.queue(task);
359 }
John Reckf47a5942014-06-30 16:20:04 -0700360}
361
Chris Craik2507c342015-05-04 14:36:49 -0700362CREATE_BRIDGE2(overrideProperty, const char* name, const char* value) {
363 Properties::overrideProperty(args->name, args->value);
364 return nullptr;
365}
366
367void RenderProxy::overrideProperty(const char* name, const char* value) {
Chris Craik2507c342015-05-04 14:36:49 -0700368 SETUP_TASK(overrideProperty);
369 args->name = name;
370 args->value = value;
371 staticPostAndWait(task); // expensive, but block here since name/value pointers owned by caller
372}
373
John Reck28ad7b52014-04-07 16:59:25 -0700374CREATE_BRIDGE0(fence) {
375 // Intentionally empty
Chris Craikd41c4d82015-01-05 15:51:13 -0800376 return nullptr;
John Reck28ad7b52014-04-07 16:59:25 -0700377}
378
Andreas Gampe64bb4132014-11-22 00:35:09 +0000379template <typename T>
380void UNUSED(T t) {}
381
John Reck28ad7b52014-04-07 16:59:25 -0700382void RenderProxy::fence() {
383 SETUP_TASK(fence);
Andreas Gampe1e196742014-11-10 15:23:43 -0800384 UNUSED(args);
John Reck28ad7b52014-04-07 16:59:25 -0700385 postAndWait(task);
386}
387
Thomas Buhotc0a0e1a2016-01-18 10:31:58 +0100388void RenderProxy::staticFence() {
389 SETUP_TASK(fence);
390 UNUSED(args);
391 staticPostAndWait(task);
392}
393
John Reckf47a5942014-06-30 16:20:04 -0700394CREATE_BRIDGE1(stopDrawing, CanvasContext* context) {
395 args->context->stopDrawing();
Chris Craikd41c4d82015-01-05 15:51:13 -0800396 return nullptr;
John Reckf47a5942014-06-30 16:20:04 -0700397}
398
399void RenderProxy::stopDrawing() {
400 SETUP_TASK(stopDrawing);
401 args->context = mContext;
402 postAndWait(task);
403}
404
John Recka5dda642014-05-22 15:43:54 -0700405CREATE_BRIDGE1(notifyFramePending, CanvasContext* context) {
406 args->context->notifyFramePending();
Chris Craikd41c4d82015-01-05 15:51:13 -0800407 return nullptr;
John Recka5dda642014-05-22 15:43:54 -0700408}
409
410void RenderProxy::notifyFramePending() {
411 SETUP_TASK(notifyFramePending);
412 args->context = mContext;
413 mRenderThread.queueAtFront(task);
414}
415
John Reck7f2e5e32015-05-05 11:00:53 -0700416CREATE_BRIDGE4(dumpProfileInfo, CanvasContext* context, RenderThread* thread,
417 int fd, int dumpFlags) {
John Reckfe5e7b72014-05-23 17:42:28 -0700418 args->context->profiler().dumpData(args->fd);
Chris Craik53e51e42015-06-01 10:35:35 -0700419 if (args->dumpFlags & DumpFlags::FrameStats) {
John Reckba6adf62015-02-19 14:36:50 -0800420 args->context->dumpFrames(args->fd);
421 }
Chris Craik53e51e42015-06-01 10:35:35 -0700422 if (args->dumpFlags & DumpFlags::Reset) {
John Reckba6adf62015-02-19 14:36:50 -0800423 args->context->resetFrameStats();
424 }
Chris Craikd41c4d82015-01-05 15:51:13 -0800425 return nullptr;
John Reckfe5e7b72014-05-23 17:42:28 -0700426}
427
John Reckba6adf62015-02-19 14:36:50 -0800428void RenderProxy::dumpProfileInfo(int fd, int dumpFlags) {
John Reckfe5e7b72014-05-23 17:42:28 -0700429 SETUP_TASK(dumpProfileInfo);
430 args->context = mContext;
John Reck7f2e5e32015-05-05 11:00:53 -0700431 args->thread = &mRenderThread;
John Reckfe5e7b72014-05-23 17:42:28 -0700432 args->fd = fd;
John Reckba6adf62015-02-19 14:36:50 -0800433 args->dumpFlags = dumpFlags;
John Reckfe5e7b72014-05-23 17:42:28 -0700434 postAndWait(task);
435}
436
John Reck7f2e5e32015-05-05 11:00:53 -0700437CREATE_BRIDGE1(resetProfileInfo, CanvasContext* context) {
438 args->context->resetFrameStats();
439 return nullptr;
440}
441
442void RenderProxy::resetProfileInfo() {
443 SETUP_TASK(resetProfileInfo);
444 args->context = mContext;
445 postAndWait(task);
446}
447
John Reckba6adf62015-02-19 14:36:50 -0800448CREATE_BRIDGE2(dumpGraphicsMemory, int fd, RenderThread* thread) {
449 args->thread->jankTracker().dump(args->fd);
450
Chris Craik2ae07332015-01-21 14:22:39 -0800451 FILE *file = fdopen(args->fd, "a");
452 if (Caches::hasInstance()) {
453 String8 cachesLog;
454 Caches::getInstance().dumpMemoryUsage(cachesLog);
455 fprintf(file, "\nCaches:\n%s\n", cachesLog.string());
456 } else {
457 fprintf(file, "\nNo caches instance.\n");
458 }
Chris Craikff3edce2016-01-14 10:04:08 -0800459#if HWUI_NEW_OPS
460 fprintf(file, "\nPipeline=FrameBuilder\n");
461#else
462 fprintf(file, "\nPipeline=OpenGLRenderer\n");
463#endif
Chris Craik2ae07332015-01-21 14:22:39 -0800464 fflush(file);
Chris Craikd41c4d82015-01-05 15:51:13 -0800465 return nullptr;
John Reck0e89e2b2014-10-31 14:49:06 -0700466}
467
Chris Craik2ae07332015-01-21 14:22:39 -0800468void RenderProxy::dumpGraphicsMemory(int fd) {
youngmin0822.leec80c9ad2015-03-20 21:22:32 +0900469 if (!RenderThread::hasInstance()) return;
Chris Craik2ae07332015-01-21 14:22:39 -0800470 SETUP_TASK(dumpGraphicsMemory);
John Reck0e89e2b2014-10-31 14:49:06 -0700471 args->fd = fd;
John Reckba6adf62015-02-19 14:36:50 -0800472 args->thread = &RenderThread::getInstance();
John Reck0e89e2b2014-10-31 14:49:06 -0700473 staticPostAndWait(task);
474}
475
Skuhneea7a7fb2015-08-28 07:10:31 -0700476CREATE_BRIDGE4(setTextureAtlas, RenderThread* thread, GraphicBuffer* buffer, int64_t* map,
477 size_t size) {
John Reck3b202512014-06-23 13:13:08 -0700478 CanvasContext::setTextureAtlas(*args->thread, args->buffer, args->map, args->size);
Chris Craikd41c4d82015-01-05 15:51:13 -0800479 args->buffer->decStrong(nullptr);
480 return nullptr;
John Reck3b202512014-06-23 13:13:08 -0700481}
482
483void RenderProxy::setTextureAtlas(const sp<GraphicBuffer>& buffer, int64_t* map, size_t size) {
484 SETUP_TASK(setTextureAtlas);
485 args->thread = &mRenderThread;
486 args->buffer = buffer.get();
Chris Craikd41c4d82015-01-05 15:51:13 -0800487 args->buffer->incStrong(nullptr);
John Reck3b202512014-06-23 13:13:08 -0700488 args->map = map;
489 args->size = size;
490 post(task);
491}
492
John Reckedc524c2015-03-18 15:24:33 -0700493CREATE_BRIDGE2(setProcessStatsBuffer, RenderThread* thread, int fd) {
494 args->thread->jankTracker().switchStorageToAshmem(args->fd);
495 close(args->fd);
496 return nullptr;
497}
498
499void RenderProxy::setProcessStatsBuffer(int fd) {
500 SETUP_TASK(setProcessStatsBuffer);
501 args->thread = &mRenderThread;
502 args->fd = dup(fd);
503 post(task);
504}
505
Skuhneea7a7fb2015-08-28 07:10:31 -0700506CREATE_BRIDGE3(addRenderNode, CanvasContext* context, RenderNode* node, bool placeFront) {
507 args->context->addRenderNode(args->node, args->placeFront);
508 return nullptr;
509}
510
511void RenderProxy::addRenderNode(RenderNode* node, bool placeFront) {
512 SETUP_TASK(addRenderNode);
513 args->context = mContext;
514 args->node = node;
515 args->placeFront = placeFront;
516 post(task);
517}
518
519CREATE_BRIDGE2(removeRenderNode, CanvasContext* context, RenderNode* node) {
520 args->context->removeRenderNode(args->node);
521 return nullptr;
522}
523
524void RenderProxy::removeRenderNode(RenderNode* node) {
525 SETUP_TASK(removeRenderNode);
526 args->context = mContext;
527 args->node = node;
528 post(task);
529}
530
531CREATE_BRIDGE2(drawRenderNode, CanvasContext* context, RenderNode* node) {
532 args->context->prepareAndDraw(args->node);
533 return nullptr;
534}
535
536void RenderProxy::drawRenderNode(RenderNode* node) {
537 SETUP_TASK(drawRenderNode);
538 args->context = mContext;
539 args->node = node;
540 // Be pseudo-thread-safe and don't use any member variables
541 staticPostAndWait(task);
542}
543
Skuhneb8160872015-09-22 09:51:39 -0700544CREATE_BRIDGE5(setContentDrawBounds, CanvasContext* context, int left, int top,
Skuhneea7a7fb2015-08-28 07:10:31 -0700545 int right, int bottom) {
Skuhneb8160872015-09-22 09:51:39 -0700546 args->context->setContentDrawBounds(args->left, args->top, args->right, args->bottom);
Skuhneea7a7fb2015-08-28 07:10:31 -0700547 return nullptr;
548}
549
Skuhneb8160872015-09-22 09:51:39 -0700550void RenderProxy::setContentDrawBounds(int left, int top, int right, int bottom) {
551 SETUP_TASK(setContentDrawBounds);
Skuhneea7a7fb2015-08-28 07:10:31 -0700552 args->context = mContext;
553 args->left = left;
554 args->top = top;
555 args->right = right;
556 args->bottom = bottom;
557 staticPostAndWait(task);
558}
559
John Recke248bd12015-08-05 13:53:53 -0700560CREATE_BRIDGE1(serializeDisplayListTree, CanvasContext* context) {
561 args->context->serializeDisplayListTree();
562 return nullptr;
563}
564
565void RenderProxy::serializeDisplayListTree() {
566 SETUP_TASK(serializeDisplayListTree);
567 args->context = mContext;
568 post(task);
569}
570
Andres Morales910beb82016-02-02 16:19:40 -0800571CREATE_BRIDGE2(addFrameMetricsObserver, CanvasContext* context,
572 FrameMetricsObserver* frameStatsObserver) {
573 args->context->addFrameMetricsObserver(args->frameStatsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800574 if (args->frameStatsObserver != nullptr) {
575 args->frameStatsObserver->decStrong(args->context);
576 }
577 return nullptr;
578}
579
Andres Morales910beb82016-02-02 16:19:40 -0800580void RenderProxy::addFrameMetricsObserver(FrameMetricsObserver* observer) {
581 SETUP_TASK(addFrameMetricsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800582 args->context = mContext;
583 args->frameStatsObserver = observer;
584 if (observer != nullptr) {
585 observer->incStrong(mContext);
586 }
587 post(task);
588}
589
Andres Morales910beb82016-02-02 16:19:40 -0800590CREATE_BRIDGE2(removeFrameMetricsObserver, CanvasContext* context,
591 FrameMetricsObserver* frameStatsObserver) {
592 args->context->removeFrameMetricsObserver(args->frameStatsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800593 if (args->frameStatsObserver != nullptr) {
594 args->frameStatsObserver->decStrong(args->context);
595 }
596 return nullptr;
597}
598
Andres Morales910beb82016-02-02 16:19:40 -0800599void RenderProxy::removeFrameMetricsObserver(FrameMetricsObserver* observer) {
600 SETUP_TASK(removeFrameMetricsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800601 args->context = mContext;
602 args->frameStatsObserver = observer;
603 if (observer != nullptr) {
604 observer->incStrong(mContext);
605 }
606 post(task);
607}
608
John Reck4f02bf42014-01-03 18:09:17 -0800609void RenderProxy::post(RenderTask* task) {
610 mRenderThread.queue(task);
611}
612
613void* RenderProxy::postAndWait(MethodInvokeRenderTask* task) {
614 void* retval;
615 task->setReturnPtr(&retval);
John Reckcba287b2015-11-10 12:52:44 -0800616 SignalingRenderTask syncTask(task, &mSyncMutex, &mSyncCondition);
617 AutoMutex _lock(mSyncMutex);
618 mRenderThread.queue(&syncTask);
619 mSyncCondition.wait(mSyncMutex);
John Reck4f02bf42014-01-03 18:09:17 -0800620 return retval;
621}
622
John Reck0e89e2b2014-10-31 14:49:06 -0700623void* RenderProxy::staticPostAndWait(MethodInvokeRenderTask* task) {
624 RenderThread& thread = RenderThread::getInstance();
625 void* retval;
626 task->setReturnPtr(&retval);
Chris Craik0a24b142015-10-19 17:10:19 -0700627 thread.queueAndWait(task);
John Reck0e89e2b2014-10-31 14:49:06 -0700628 return retval;
629}
630
John Reck4f02bf42014-01-03 18:09:17 -0800631} /* namespace renderthread */
632} /* namespace uirenderer */
633} /* namespace android */