blob: 2e99d0bcb50de94a9b6399722cb603a0a3d32e6e [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
John Reck51f2d602016-04-06 07:50:47 -0700225int RenderProxy::syncAndDrawFrame(TreeObserver* observer) {
226 return mDrawFrameTask.drawFrame(observer);
John Reck4f02bf42014-01-03 18:09:17 -0800227}
228
John Reck51f2d602016-04-06 07:50:47 -0700229CREATE_BRIDGE2(destroy, CanvasContext* context, TreeObserver* observer) {
230 args->context->destroy(args->observer);
Chris Craikd41c4d82015-01-05 15:51:13 -0800231 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800232}
233
John Reck51f2d602016-04-06 07:50:47 -0700234void RenderProxy::destroy(TreeObserver* observer) {
John Reck17035b02014-09-03 07:39:53 -0700235 SETUP_TASK(destroy);
John Reck4f02bf42014-01-03 18:09:17 -0800236 args->context = mContext;
John Reck51f2d602016-04-06 07:50:47 -0700237 args->observer = observer;
John Reckfae904d2014-04-14 11:01:57 -0700238 // destroyCanvasAndSurface() needs a fence as when it returns the
239 // underlying BufferQueue is going to be released from under
240 // the render thread.
241 postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -0800242}
243
John Reck3b202512014-06-23 13:13:08 -0700244CREATE_BRIDGE2(invokeFunctor, RenderThread* thread, Functor* functor) {
245 CanvasContext::invokeFunctor(*args->thread, args->functor);
Chris Craikd41c4d82015-01-05 15:51:13 -0800246 return nullptr;
John Reck0d1f6342014-03-28 20:30:27 -0700247}
248
249void RenderProxy::invokeFunctor(Functor* functor, bool waitForCompletion) {
John Reckd3d8daf2014-04-10 15:00:13 -0700250 ATRACE_CALL();
John Reck3b202512014-06-23 13:13:08 -0700251 RenderThread& thread = RenderThread::getInstance();
John Reck0d1f6342014-03-28 20:30:27 -0700252 SETUP_TASK(invokeFunctor);
John Reck3b202512014-06-23 13:13:08 -0700253 args->thread = &thread;
John Reck0d1f6342014-03-28 20:30:27 -0700254 args->functor = functor;
255 if (waitForCompletion) {
John Reck3b202512014-06-23 13:13:08 -0700256 // waitForCompletion = true is expected to be fairly rare and only
257 // happen in destruction. Thus it should be fine to temporarily
258 // create a Mutex
John Reck0e89e2b2014-10-31 14:49:06 -0700259 staticPostAndWait(task);
John Reck0d1f6342014-03-28 20:30:27 -0700260 } else {
John Reck3b202512014-06-23 13:13:08 -0700261 thread.queue(task);
John Reck0d1f6342014-03-28 20:30:27 -0700262 }
263}
264
John Reckfc53ef272014-02-11 10:40:25 -0800265CREATE_BRIDGE2(runWithGlContext, CanvasContext* context, RenderTask* task) {
266 args->context->runWithGlContext(args->task);
Chris Craikd41c4d82015-01-05 15:51:13 -0800267 return nullptr;
John Reckfc53ef272014-02-11 10:40:25 -0800268}
269
270void RenderProxy::runWithGlContext(RenderTask* gltask) {
271 SETUP_TASK(runWithGlContext);
272 args->context = mContext;
273 args->task = gltask;
274 postAndWait(task);
275}
276
John Reckc36df952015-07-29 10:09:36 -0700277CREATE_BRIDGE1(createTextureLayer, CanvasContext* context) {
John Reck1949e792014-04-08 15:18:56 -0700278 Layer* layer = args->context->createTextureLayer();
Chris Craikd41c4d82015-01-05 15:51:13 -0800279 if (!layer) return nullptr;
John Reckc36df952015-07-29 10:09:36 -0700280 return new DeferredLayerUpdater(layer);
John Reck19b6bcf2014-02-14 20:03:38 -0800281}
282
283DeferredLayerUpdater* RenderProxy::createTextureLayer() {
284 SETUP_TASK(createTextureLayer);
John Reck1949e792014-04-08 15:18:56 -0700285 args->context = mContext;
John Reck19b6bcf2014-02-14 20:03:38 -0800286 void* retval = postAndWait(task);
287 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(retval);
John Reck19b6bcf2014-02-14 20:03:38 -0800288 return layer;
289}
290
John Reck51f2d602016-04-06 07:50:47 -0700291CREATE_BRIDGE3(buildLayer, CanvasContext* context, RenderNode* node, TreeObserver* observer) {
292 args->context->buildLayer(args->node, args->observer);
Chris Craikd41c4d82015-01-05 15:51:13 -0800293 return nullptr;
John Reck3e824952014-08-20 10:08:39 -0700294}
295
John Reck51f2d602016-04-06 07:50:47 -0700296void RenderProxy::buildLayer(RenderNode* node, TreeObserver* observer) {
John Reck3e824952014-08-20 10:08:39 -0700297 SETUP_TASK(buildLayer);
298 args->context = mContext;
299 args->node = node;
John Reck51f2d602016-04-06 07:50:47 -0700300 args->observer = observer;
John Reck3e824952014-08-20 10:08:39 -0700301 postAndWait(task);
302}
303
John Reck19b6bcf2014-02-14 20:03:38 -0800304CREATE_BRIDGE3(copyLayerInto, CanvasContext* context, DeferredLayerUpdater* layer,
305 SkBitmap* bitmap) {
306 bool success = args->context->copyLayerInto(args->layer, args->bitmap);
307 return (void*) success;
308}
309
John Reck3731dc22015-04-13 15:20:29 -0700310bool RenderProxy::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap& bitmap) {
John Reck19b6bcf2014-02-14 20:03:38 -0800311 SETUP_TASK(copyLayerInto);
312 args->context = mContext;
313 args->layer = layer;
John Reck3731dc22015-04-13 15:20:29 -0700314 args->bitmap = &bitmap;
John Reck19b6bcf2014-02-14 20:03:38 -0800315 return (bool) postAndWait(task);
316}
317
John Reckd72e0a32014-05-29 18:56:11 -0700318void RenderProxy::pushLayerUpdate(DeferredLayerUpdater* layer) {
319 mDrawFrameTask.pushLayerUpdate(layer);
320}
321
322void RenderProxy::cancelLayerUpdate(DeferredLayerUpdater* layer) {
323 mDrawFrameTask.removeLayerUpdate(layer);
John Reck19b6bcf2014-02-14 20:03:38 -0800324}
325
John Reck918ad522014-06-27 14:45:25 -0700326CREATE_BRIDGE1(detachSurfaceTexture, DeferredLayerUpdater* layer) {
327 args->layer->detachSurfaceTexture();
Chris Craikd41c4d82015-01-05 15:51:13 -0800328 return nullptr;
John Reck918ad522014-06-27 14:45:25 -0700329}
330
331void RenderProxy::detachSurfaceTexture(DeferredLayerUpdater* layer) {
332 SETUP_TASK(detachSurfaceTexture);
333 args->layer = layer;
334 postAndWait(task);
335}
336
John Reck51f2d602016-04-06 07:50:47 -0700337CREATE_BRIDGE2(destroyHardwareResources, CanvasContext* context, TreeObserver* observer) {
338 args->context->destroyHardwareResources(args->observer);
Chris Craikd41c4d82015-01-05 15:51:13 -0800339 return nullptr;
John Recke1628b72014-05-23 15:11:19 -0700340}
341
John Reck51f2d602016-04-06 07:50:47 -0700342void RenderProxy::destroyHardwareResources(TreeObserver* observer) {
John Reckf47a5942014-06-30 16:20:04 -0700343 SETUP_TASK(destroyHardwareResources);
John Recke1628b72014-05-23 15:11:19 -0700344 args->context = mContext;
John Reck51f2d602016-04-06 07:50:47 -0700345 args->observer = observer;
346 postAndWait(task);
John Recke1628b72014-05-23 15:11:19 -0700347}
348
Chris Craik2507c342015-05-04 14:36:49 -0700349CREATE_BRIDGE2(trimMemory, RenderThread* thread, int level) {
John Reckf47a5942014-06-30 16:20:04 -0700350 CanvasContext::trimMemory(*args->thread, args->level);
Chris Craikd41c4d82015-01-05 15:51:13 -0800351 return nullptr;
John Reckf47a5942014-06-30 16:20:04 -0700352}
353
354void RenderProxy::trimMemory(int level) {
John Reckcd3a22c2014-08-06 13:33:59 -0700355 // Avoid creating a RenderThread to do a trimMemory.
356 if (RenderThread::hasInstance()) {
357 RenderThread& thread = RenderThread::getInstance();
Chris Craik2507c342015-05-04 14:36:49 -0700358 SETUP_TASK(trimMemory);
John Reckcd3a22c2014-08-06 13:33:59 -0700359 args->thread = &thread;
360 args->level = level;
361 thread.queue(task);
362 }
John Reckf47a5942014-06-30 16:20:04 -0700363}
364
Chris Craik2507c342015-05-04 14:36:49 -0700365CREATE_BRIDGE2(overrideProperty, const char* name, const char* value) {
366 Properties::overrideProperty(args->name, args->value);
367 return nullptr;
368}
369
370void RenderProxy::overrideProperty(const char* name, const char* value) {
Chris Craik2507c342015-05-04 14:36:49 -0700371 SETUP_TASK(overrideProperty);
372 args->name = name;
373 args->value = value;
374 staticPostAndWait(task); // expensive, but block here since name/value pointers owned by caller
375}
376
John Reck28ad7b52014-04-07 16:59:25 -0700377CREATE_BRIDGE0(fence) {
378 // Intentionally empty
Chris Craikd41c4d82015-01-05 15:51:13 -0800379 return nullptr;
John Reck28ad7b52014-04-07 16:59:25 -0700380}
381
Andreas Gampe64bb4132014-11-22 00:35:09 +0000382template <typename T>
383void UNUSED(T t) {}
384
John Reck28ad7b52014-04-07 16:59:25 -0700385void RenderProxy::fence() {
386 SETUP_TASK(fence);
Andreas Gampe1e196742014-11-10 15:23:43 -0800387 UNUSED(args);
John Reck28ad7b52014-04-07 16:59:25 -0700388 postAndWait(task);
389}
390
Thomas Buhotc0a0e1a2016-01-18 10:31:58 +0100391void RenderProxy::staticFence() {
392 SETUP_TASK(fence);
393 UNUSED(args);
394 staticPostAndWait(task);
395}
396
John Reckf47a5942014-06-30 16:20:04 -0700397CREATE_BRIDGE1(stopDrawing, CanvasContext* context) {
398 args->context->stopDrawing();
Chris Craikd41c4d82015-01-05 15:51:13 -0800399 return nullptr;
John Reckf47a5942014-06-30 16:20:04 -0700400}
401
402void RenderProxy::stopDrawing() {
403 SETUP_TASK(stopDrawing);
404 args->context = mContext;
405 postAndWait(task);
406}
407
John Recka5dda642014-05-22 15:43:54 -0700408CREATE_BRIDGE1(notifyFramePending, CanvasContext* context) {
409 args->context->notifyFramePending();
Chris Craikd41c4d82015-01-05 15:51:13 -0800410 return nullptr;
John Recka5dda642014-05-22 15:43:54 -0700411}
412
413void RenderProxy::notifyFramePending() {
414 SETUP_TASK(notifyFramePending);
415 args->context = mContext;
416 mRenderThread.queueAtFront(task);
417}
418
John Reck7f2e5e32015-05-05 11:00:53 -0700419CREATE_BRIDGE4(dumpProfileInfo, CanvasContext* context, RenderThread* thread,
420 int fd, int dumpFlags) {
John Reckfe5e7b72014-05-23 17:42:28 -0700421 args->context->profiler().dumpData(args->fd);
Chris Craik53e51e42015-06-01 10:35:35 -0700422 if (args->dumpFlags & DumpFlags::FrameStats) {
John Reckba6adf62015-02-19 14:36:50 -0800423 args->context->dumpFrames(args->fd);
424 }
Chris Craik53e51e42015-06-01 10:35:35 -0700425 if (args->dumpFlags & DumpFlags::Reset) {
John Reckba6adf62015-02-19 14:36:50 -0800426 args->context->resetFrameStats();
427 }
Chris Craikd41c4d82015-01-05 15:51:13 -0800428 return nullptr;
John Reckfe5e7b72014-05-23 17:42:28 -0700429}
430
John Reckba6adf62015-02-19 14:36:50 -0800431void RenderProxy::dumpProfileInfo(int fd, int dumpFlags) {
John Reckfe5e7b72014-05-23 17:42:28 -0700432 SETUP_TASK(dumpProfileInfo);
433 args->context = mContext;
John Reck7f2e5e32015-05-05 11:00:53 -0700434 args->thread = &mRenderThread;
John Reckfe5e7b72014-05-23 17:42:28 -0700435 args->fd = fd;
John Reckba6adf62015-02-19 14:36:50 -0800436 args->dumpFlags = dumpFlags;
John Reckfe5e7b72014-05-23 17:42:28 -0700437 postAndWait(task);
438}
439
John Reck7f2e5e32015-05-05 11:00:53 -0700440CREATE_BRIDGE1(resetProfileInfo, CanvasContext* context) {
441 args->context->resetFrameStats();
442 return nullptr;
443}
444
445void RenderProxy::resetProfileInfo() {
446 SETUP_TASK(resetProfileInfo);
447 args->context = mContext;
448 postAndWait(task);
449}
450
John Reckba6adf62015-02-19 14:36:50 -0800451CREATE_BRIDGE2(dumpGraphicsMemory, int fd, RenderThread* thread) {
452 args->thread->jankTracker().dump(args->fd);
453
Chris Craik2ae07332015-01-21 14:22:39 -0800454 FILE *file = fdopen(args->fd, "a");
455 if (Caches::hasInstance()) {
456 String8 cachesLog;
457 Caches::getInstance().dumpMemoryUsage(cachesLog);
458 fprintf(file, "\nCaches:\n%s\n", cachesLog.string());
459 } else {
460 fprintf(file, "\nNo caches instance.\n");
461 }
Chris Craikff3edce2016-01-14 10:04:08 -0800462#if HWUI_NEW_OPS
463 fprintf(file, "\nPipeline=FrameBuilder\n");
464#else
465 fprintf(file, "\nPipeline=OpenGLRenderer\n");
466#endif
Chris Craik2ae07332015-01-21 14:22:39 -0800467 fflush(file);
Chris Craikd41c4d82015-01-05 15:51:13 -0800468 return nullptr;
John Reck0e89e2b2014-10-31 14:49:06 -0700469}
470
Chris Craik2ae07332015-01-21 14:22:39 -0800471void RenderProxy::dumpGraphicsMemory(int fd) {
youngmin0822.leec80c9ad2015-03-20 21:22:32 +0900472 if (!RenderThread::hasInstance()) return;
Chris Craik2ae07332015-01-21 14:22:39 -0800473 SETUP_TASK(dumpGraphicsMemory);
John Reck0e89e2b2014-10-31 14:49:06 -0700474 args->fd = fd;
John Reckba6adf62015-02-19 14:36:50 -0800475 args->thread = &RenderThread::getInstance();
John Reck0e89e2b2014-10-31 14:49:06 -0700476 staticPostAndWait(task);
477}
478
Skuhneea7a7fb2015-08-28 07:10:31 -0700479CREATE_BRIDGE4(setTextureAtlas, RenderThread* thread, GraphicBuffer* buffer, int64_t* map,
480 size_t size) {
John Reck3b202512014-06-23 13:13:08 -0700481 CanvasContext::setTextureAtlas(*args->thread, args->buffer, args->map, args->size);
Chris Craikd41c4d82015-01-05 15:51:13 -0800482 args->buffer->decStrong(nullptr);
483 return nullptr;
John Reck3b202512014-06-23 13:13:08 -0700484}
485
486void RenderProxy::setTextureAtlas(const sp<GraphicBuffer>& buffer, int64_t* map, size_t size) {
487 SETUP_TASK(setTextureAtlas);
488 args->thread = &mRenderThread;
489 args->buffer = buffer.get();
Chris Craikd41c4d82015-01-05 15:51:13 -0800490 args->buffer->incStrong(nullptr);
John Reck3b202512014-06-23 13:13:08 -0700491 args->map = map;
492 args->size = size;
493 post(task);
494}
495
John Reckedc524c2015-03-18 15:24:33 -0700496CREATE_BRIDGE2(setProcessStatsBuffer, RenderThread* thread, int fd) {
497 args->thread->jankTracker().switchStorageToAshmem(args->fd);
498 close(args->fd);
499 return nullptr;
500}
501
502void RenderProxy::setProcessStatsBuffer(int fd) {
503 SETUP_TASK(setProcessStatsBuffer);
504 args->thread = &mRenderThread;
505 args->fd = dup(fd);
506 post(task);
507}
508
Skuhneea7a7fb2015-08-28 07:10:31 -0700509CREATE_BRIDGE3(addRenderNode, CanvasContext* context, RenderNode* node, bool placeFront) {
510 args->context->addRenderNode(args->node, args->placeFront);
511 return nullptr;
512}
513
514void RenderProxy::addRenderNode(RenderNode* node, bool placeFront) {
515 SETUP_TASK(addRenderNode);
516 args->context = mContext;
517 args->node = node;
518 args->placeFront = placeFront;
519 post(task);
520}
521
522CREATE_BRIDGE2(removeRenderNode, CanvasContext* context, RenderNode* node) {
523 args->context->removeRenderNode(args->node);
524 return nullptr;
525}
526
527void RenderProxy::removeRenderNode(RenderNode* node) {
528 SETUP_TASK(removeRenderNode);
529 args->context = mContext;
530 args->node = node;
531 post(task);
532}
533
534CREATE_BRIDGE2(drawRenderNode, CanvasContext* context, RenderNode* node) {
535 args->context->prepareAndDraw(args->node);
536 return nullptr;
537}
538
539void RenderProxy::drawRenderNode(RenderNode* node) {
540 SETUP_TASK(drawRenderNode);
541 args->context = mContext;
542 args->node = node;
543 // Be pseudo-thread-safe and don't use any member variables
544 staticPostAndWait(task);
545}
546
Skuhneb8160872015-09-22 09:51:39 -0700547CREATE_BRIDGE5(setContentDrawBounds, CanvasContext* context, int left, int top,
Skuhneea7a7fb2015-08-28 07:10:31 -0700548 int right, int bottom) {
Skuhneb8160872015-09-22 09:51:39 -0700549 args->context->setContentDrawBounds(args->left, args->top, args->right, args->bottom);
Skuhneea7a7fb2015-08-28 07:10:31 -0700550 return nullptr;
551}
552
Skuhneb8160872015-09-22 09:51:39 -0700553void RenderProxy::setContentDrawBounds(int left, int top, int right, int bottom) {
554 SETUP_TASK(setContentDrawBounds);
Skuhneea7a7fb2015-08-28 07:10:31 -0700555 args->context = mContext;
556 args->left = left;
557 args->top = top;
558 args->right = right;
559 args->bottom = bottom;
560 staticPostAndWait(task);
561}
562
John Recke248bd12015-08-05 13:53:53 -0700563CREATE_BRIDGE1(serializeDisplayListTree, CanvasContext* context) {
564 args->context->serializeDisplayListTree();
565 return nullptr;
566}
567
568void RenderProxy::serializeDisplayListTree() {
569 SETUP_TASK(serializeDisplayListTree);
570 args->context = mContext;
571 post(task);
572}
573
Andres Morales910beb82016-02-02 16:19:40 -0800574CREATE_BRIDGE2(addFrameMetricsObserver, CanvasContext* context,
575 FrameMetricsObserver* frameStatsObserver) {
576 args->context->addFrameMetricsObserver(args->frameStatsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800577 if (args->frameStatsObserver != nullptr) {
578 args->frameStatsObserver->decStrong(args->context);
579 }
580 return nullptr;
581}
582
Andres Morales910beb82016-02-02 16:19:40 -0800583void RenderProxy::addFrameMetricsObserver(FrameMetricsObserver* observer) {
584 SETUP_TASK(addFrameMetricsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800585 args->context = mContext;
586 args->frameStatsObserver = observer;
587 if (observer != nullptr) {
588 observer->incStrong(mContext);
589 }
590 post(task);
591}
592
Andres Morales910beb82016-02-02 16:19:40 -0800593CREATE_BRIDGE2(removeFrameMetricsObserver, CanvasContext* context,
594 FrameMetricsObserver* frameStatsObserver) {
595 args->context->removeFrameMetricsObserver(args->frameStatsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800596 if (args->frameStatsObserver != nullptr) {
597 args->frameStatsObserver->decStrong(args->context);
598 }
599 return nullptr;
600}
601
Andres Morales910beb82016-02-02 16:19:40 -0800602void RenderProxy::removeFrameMetricsObserver(FrameMetricsObserver* observer) {
603 SETUP_TASK(removeFrameMetricsObserver);
Andres Morales06f5bc72015-12-15 15:21:31 -0800604 args->context = mContext;
605 args->frameStatsObserver = observer;
606 if (observer != nullptr) {
607 observer->incStrong(mContext);
608 }
609 post(task);
610}
611
John Reck4f02bf42014-01-03 18:09:17 -0800612void RenderProxy::post(RenderTask* task) {
613 mRenderThread.queue(task);
614}
615
616void* RenderProxy::postAndWait(MethodInvokeRenderTask* task) {
617 void* retval;
618 task->setReturnPtr(&retval);
John Reckcba287b2015-11-10 12:52:44 -0800619 SignalingRenderTask syncTask(task, &mSyncMutex, &mSyncCondition);
620 AutoMutex _lock(mSyncMutex);
621 mRenderThread.queue(&syncTask);
622 mSyncCondition.wait(mSyncMutex);
John Reck4f02bf42014-01-03 18:09:17 -0800623 return retval;
624}
625
John Reck0e89e2b2014-10-31 14:49:06 -0700626void* RenderProxy::staticPostAndWait(MethodInvokeRenderTask* task) {
627 RenderThread& thread = RenderThread::getInstance();
628 void* retval;
629 task->setReturnPtr(&retval);
Chris Craik0a24b142015-10-19 17:10:19 -0700630 thread.queueAndWait(task);
John Reck0e89e2b2014-10-31 14:49:06 -0700631 return retval;
632}
633
John Reck4f02bf42014-01-03 18:09:17 -0800634} /* namespace renderthread */
635} /* namespace uirenderer */
636} /* namespace android */