blob: 4dc4248e443a1a7217379e1e6c9acba51bd450a5 [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
19#include "CanvasContext.h"
20#include "RenderTask.h"
21#include "RenderThread.h"
22
John Reck19b6bcf2014-02-14 20:03:38 -080023#include "../DeferredLayerUpdater.h"
John Reck4f02bf42014-01-03 18:09:17 -080024#include "../DisplayList.h"
John Reck19b6bcf2014-02-14 20:03:38 -080025#include "../LayerRenderer.h"
John Reck4f02bf42014-01-03 18:09:17 -080026#include "../Rect.h"
27
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
John Reck119907c2014-08-14 09:02:01 -070055CREATE_BRIDGE4(createContext, RenderThread* thread, bool translucent,
56 RenderNode* rootRenderNode, IContextFactory* contextFactory) {
57 return new CanvasContext(*args->thread, args->translucent,
58 args->rootRenderNode, args->contextFactory);
John Reck4f02bf42014-01-03 18:09:17 -080059}
60
John Reck119907c2014-08-14 09:02:01 -070061RenderProxy::RenderProxy(bool translucent, RenderNode* rootRenderNode, IContextFactory* contextFactory)
John Reck4f02bf42014-01-03 18:09:17 -080062 : mRenderThread(RenderThread::getInstance())
Chris Craikd41c4d82015-01-05 15:51:13 -080063 , mContext(nullptr) {
John Reck4f02bf42014-01-03 18:09:17 -080064 SETUP_TASK(createContext);
65 args->translucent = translucent;
John Recke45b1fd2014-04-15 09:50:16 -070066 args->rootRenderNode = rootRenderNode;
John Reck3b202512014-06-23 13:13:08 -070067 args->thread = &mRenderThread;
John Reck119907c2014-08-14 09:02:01 -070068 args->contextFactory = contextFactory;
John Reck4f02bf42014-01-03 18:09:17 -080069 mContext = (CanvasContext*) postAndWait(task);
John Reck18f16e62014-05-02 16:46:41 -070070 mDrawFrameTask.setContext(&mRenderThread, mContext);
John Reck4f02bf42014-01-03 18:09:17 -080071}
72
73RenderProxy::~RenderProxy() {
74 destroyContext();
75}
76
77CREATE_BRIDGE1(destroyContext, CanvasContext* context) {
78 delete args->context;
Chris Craikd41c4d82015-01-05 15:51:13 -080079 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -080080}
81
82void RenderProxy::destroyContext() {
83 if (mContext) {
84 SETUP_TASK(destroyContext);
85 args->context = mContext;
Chris Craikd41c4d82015-01-05 15:51:13 -080086 mContext = nullptr;
87 mDrawFrameTask.setContext(nullptr, nullptr);
John Reck668f0e32014-03-26 15:10:40 -070088 // This is also a fence as we need to be certain that there are no
89 // outstanding mDrawFrame tasks posted before it is destroyed
90 postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -080091 }
92}
93
John Reck18f16e62014-05-02 16:46:41 -070094CREATE_BRIDGE2(setFrameInterval, RenderThread* thread, nsecs_t frameIntervalNanos) {
95 args->thread->timeLord().setFrameInterval(args->frameIntervalNanos);
Chris Craikd41c4d82015-01-05 15:51:13 -080096 return nullptr;
John Reck18f16e62014-05-02 16:46:41 -070097}
98
99void RenderProxy::setFrameInterval(nsecs_t frameIntervalNanos) {
100 SETUP_TASK(setFrameInterval);
101 args->thread = &mRenderThread;
102 args->frameIntervalNanos = frameIntervalNanos;
103 post(task);
104}
105
John Reck1125d1f2014-10-23 11:02:19 -0700106CREATE_BRIDGE2(setSwapBehavior, CanvasContext* context, SwapBehavior swapBehavior) {
107 args->context->setSwapBehavior(args->swapBehavior);
Chris Craikd41c4d82015-01-05 15:51:13 -0800108 return nullptr;
John Reck1125d1f2014-10-23 11:02:19 -0700109}
110
111void RenderProxy::setSwapBehavior(SwapBehavior swapBehavior) {
112 SETUP_TASK(setSwapBehavior);
113 args->context = mContext;
114 args->swapBehavior = swapBehavior;
115 post(task);
116}
117
John Reckfe5e7b72014-05-23 17:42:28 -0700118CREATE_BRIDGE1(loadSystemProperties, CanvasContext* context) {
John Recke4280ba2014-05-05 16:39:37 -0700119 bool needsRedraw = false;
120 if (Caches::hasInstance()) {
121 needsRedraw = Caches::getInstance().initProperties();
122 }
John Reckfe5e7b72014-05-23 17:42:28 -0700123 if (args->context->profiler().loadSystemProperties()) {
124 needsRedraw = true;
125 }
John Recke4280ba2014-05-05 16:39:37 -0700126 return (void*) needsRedraw;
127}
128
129bool RenderProxy::loadSystemProperties() {
130 SETUP_TASK(loadSystemProperties);
John Reckfe5e7b72014-05-23 17:42:28 -0700131 args->context = mContext;
John Recke4280ba2014-05-05 16:39:37 -0700132 return (bool) postAndWait(task);
133}
134
John Recka5dda642014-05-22 15:43:54 -0700135CREATE_BRIDGE2(initialize, CanvasContext* context, ANativeWindow* window) {
John Reck4f02bf42014-01-03 18:09:17 -0800136 return (void*) args->context->initialize(args->window);
137}
138
John Reckf7d9c1d2014-04-09 10:01:03 -0700139bool RenderProxy::initialize(const sp<ANativeWindow>& window) {
John Reck4f02bf42014-01-03 18:09:17 -0800140 SETUP_TASK(initialize);
141 args->context = mContext;
John Reckf7d9c1d2014-04-09 10:01:03 -0700142 args->window = window.get();
John Reck4f02bf42014-01-03 18:09:17 -0800143 return (bool) postAndWait(task);
144}
145
John Recka5dda642014-05-22 15:43:54 -0700146CREATE_BRIDGE2(updateSurface, CanvasContext* context, ANativeWindow* window) {
John Reck4f02bf42014-01-03 18:09:17 -0800147 args->context->updateSurface(args->window);
Chris Craikd41c4d82015-01-05 15:51:13 -0800148 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800149}
150
John Reckf7d9c1d2014-04-09 10:01:03 -0700151void RenderProxy::updateSurface(const sp<ANativeWindow>& window) {
John Reck4f02bf42014-01-03 18:09:17 -0800152 SETUP_TASK(updateSurface);
153 args->context = mContext;
John Reckf7d9c1d2014-04-09 10:01:03 -0700154 args->window = window.get();
155 postAndWait(task);
156}
157
John Recka5dda642014-05-22 15:43:54 -0700158CREATE_BRIDGE2(pauseSurface, CanvasContext* context, ANativeWindow* window) {
John Reck01a5ea32014-12-03 13:01:07 -0800159 return (void*) args->context->pauseSurface(args->window);
John Reckf7d9c1d2014-04-09 10:01:03 -0700160}
161
John Reck01a5ea32014-12-03 13:01:07 -0800162bool RenderProxy::pauseSurface(const sp<ANativeWindow>& window) {
John Reckf7d9c1d2014-04-09 10:01:03 -0700163 SETUP_TASK(pauseSurface);
164 args->context = mContext;
165 args->window = window.get();
John Reck01a5ea32014-12-03 13:01:07 -0800166 return (bool) postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -0800167}
168
Chris Craik058fc642014-07-23 18:19:28 -0700169CREATE_BRIDGE7(setup, CanvasContext* context, int width, int height,
170 Vector3 lightCenter, float lightRadius,
171 uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) {
172 args->context->setup(args->width, args->height, args->lightCenter, args->lightRadius,
173 args->ambientShadowAlpha, args->spotShadowAlpha);
Chris Craikd41c4d82015-01-05 15:51:13 -0800174 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800175}
176
Chris Craik058fc642014-07-23 18:19:28 -0700177void RenderProxy::setup(int width, int height, const Vector3& lightCenter, float lightRadius,
178 uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) {
John Reck4f02bf42014-01-03 18:09:17 -0800179 SETUP_TASK(setup);
180 args->context = mContext;
181 args->width = width;
182 args->height = height;
Chris Craik797b95b2014-05-20 18:10:25 -0700183 args->lightCenter = lightCenter;
184 args->lightRadius = lightRadius;
Chris Craik058fc642014-07-23 18:19:28 -0700185 args->ambientShadowAlpha = ambientShadowAlpha;
186 args->spotShadowAlpha = spotShadowAlpha;
John Reck4f02bf42014-01-03 18:09:17 -0800187 post(task);
188}
189
John Reck63a06672014-05-07 13:45:54 -0700190CREATE_BRIDGE2(setOpaque, CanvasContext* context, bool opaque) {
191 args->context->setOpaque(args->opaque);
Chris Craikd41c4d82015-01-05 15:51:13 -0800192 return nullptr;
John Reck63a06672014-05-07 13:45:54 -0700193}
194
195void RenderProxy::setOpaque(bool opaque) {
196 SETUP_TASK(setOpaque);
197 args->context = mContext;
198 args->opaque = opaque;
199 post(task);
200}
201
John Reckfe5e7b72014-05-23 17:42:28 -0700202int RenderProxy::syncAndDrawFrame(nsecs_t frameTimeNanos, nsecs_t recordDurationNanos,
John Recke4267ea2014-06-03 15:53:15 -0700203 float density) {
John Reckfe5e7b72014-05-23 17:42:28 -0700204 mDrawFrameTask.setDensity(density);
205 return mDrawFrameTask.drawFrame(frameTimeNanos, recordDurationNanos);
John Reck4f02bf42014-01-03 18:09:17 -0800206}
207
John Reck17035b02014-09-03 07:39:53 -0700208CREATE_BRIDGE1(destroy, CanvasContext* context) {
209 args->context->destroy();
Chris Craikd41c4d82015-01-05 15:51:13 -0800210 return nullptr;
John Reck4f02bf42014-01-03 18:09:17 -0800211}
212
John Reck17035b02014-09-03 07:39:53 -0700213void RenderProxy::destroy() {
214 SETUP_TASK(destroy);
John Reck4f02bf42014-01-03 18:09:17 -0800215 args->context = mContext;
John Reckfae904d2014-04-14 11:01:57 -0700216 // destroyCanvasAndSurface() needs a fence as when it returns the
217 // underlying BufferQueue is going to be released from under
218 // the render thread.
219 postAndWait(task);
John Reck4f02bf42014-01-03 18:09:17 -0800220}
221
John Reck3b202512014-06-23 13:13:08 -0700222CREATE_BRIDGE2(invokeFunctor, RenderThread* thread, Functor* functor) {
223 CanvasContext::invokeFunctor(*args->thread, args->functor);
Chris Craikd41c4d82015-01-05 15:51:13 -0800224 return nullptr;
John Reck0d1f6342014-03-28 20:30:27 -0700225}
226
227void RenderProxy::invokeFunctor(Functor* functor, bool waitForCompletion) {
John Reckd3d8daf2014-04-10 15:00:13 -0700228 ATRACE_CALL();
John Reck3b202512014-06-23 13:13:08 -0700229 RenderThread& thread = RenderThread::getInstance();
John Reck0d1f6342014-03-28 20:30:27 -0700230 SETUP_TASK(invokeFunctor);
John Reck3b202512014-06-23 13:13:08 -0700231 args->thread = &thread;
John Reck0d1f6342014-03-28 20:30:27 -0700232 args->functor = functor;
233 if (waitForCompletion) {
John Reck3b202512014-06-23 13:13:08 -0700234 // waitForCompletion = true is expected to be fairly rare and only
235 // happen in destruction. Thus it should be fine to temporarily
236 // create a Mutex
John Reck0e89e2b2014-10-31 14:49:06 -0700237 staticPostAndWait(task);
John Reck0d1f6342014-03-28 20:30:27 -0700238 } else {
John Reck3b202512014-06-23 13:13:08 -0700239 thread.queue(task);
John Reck0d1f6342014-03-28 20:30:27 -0700240 }
241}
242
John Reckfc53ef272014-02-11 10:40:25 -0800243CREATE_BRIDGE2(runWithGlContext, CanvasContext* context, RenderTask* task) {
244 args->context->runWithGlContext(args->task);
Chris Craikd41c4d82015-01-05 15:51:13 -0800245 return nullptr;
John Reckfc53ef272014-02-11 10:40:25 -0800246}
247
248void RenderProxy::runWithGlContext(RenderTask* gltask) {
249 SETUP_TASK(runWithGlContext);
250 args->context = mContext;
251 args->task = gltask;
252 postAndWait(task);
253}
254
John Reck749906b2014-10-03 15:02:19 -0700255CREATE_BRIDGE2(createTextureLayer, RenderThread* thread, CanvasContext* context) {
John Reck1949e792014-04-08 15:18:56 -0700256 Layer* layer = args->context->createTextureLayer();
Chris Craikd41c4d82015-01-05 15:51:13 -0800257 if (!layer) return nullptr;
John Reck749906b2014-10-03 15:02:19 -0700258 return new DeferredLayerUpdater(*args->thread, layer);
John Reck19b6bcf2014-02-14 20:03:38 -0800259}
260
261DeferredLayerUpdater* RenderProxy::createTextureLayer() {
262 SETUP_TASK(createTextureLayer);
John Reck1949e792014-04-08 15:18:56 -0700263 args->context = mContext;
John Reck749906b2014-10-03 15:02:19 -0700264 args->thread = &mRenderThread;
John Reck19b6bcf2014-02-14 20:03:38 -0800265 void* retval = postAndWait(task);
266 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(retval);
John Reck19b6bcf2014-02-14 20:03:38 -0800267 return layer;
268}
269
John Reck3e824952014-08-20 10:08:39 -0700270CREATE_BRIDGE2(buildLayer, CanvasContext* context, RenderNode* node) {
271 args->context->buildLayer(args->node);
Chris Craikd41c4d82015-01-05 15:51:13 -0800272 return nullptr;
John Reck3e824952014-08-20 10:08:39 -0700273}
274
275void RenderProxy::buildLayer(RenderNode* node) {
276 SETUP_TASK(buildLayer);
277 args->context = mContext;
278 args->node = node;
279 postAndWait(task);
280}
281
John Reck19b6bcf2014-02-14 20:03:38 -0800282CREATE_BRIDGE3(copyLayerInto, CanvasContext* context, DeferredLayerUpdater* layer,
283 SkBitmap* bitmap) {
284 bool success = args->context->copyLayerInto(args->layer, args->bitmap);
285 return (void*) success;
286}
287
288bool RenderProxy::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap) {
289 SETUP_TASK(copyLayerInto);
290 args->context = mContext;
291 args->layer = layer;
292 args->bitmap = bitmap;
293 return (bool) postAndWait(task);
294}
295
John Reckd72e0a32014-05-29 18:56:11 -0700296void RenderProxy::pushLayerUpdate(DeferredLayerUpdater* layer) {
297 mDrawFrameTask.pushLayerUpdate(layer);
298}
299
300void RenderProxy::cancelLayerUpdate(DeferredLayerUpdater* layer) {
301 mDrawFrameTask.removeLayerUpdate(layer);
John Reck19b6bcf2014-02-14 20:03:38 -0800302}
303
John Reck918ad522014-06-27 14:45:25 -0700304CREATE_BRIDGE1(detachSurfaceTexture, DeferredLayerUpdater* layer) {
305 args->layer->detachSurfaceTexture();
Chris Craikd41c4d82015-01-05 15:51:13 -0800306 return nullptr;
John Reck918ad522014-06-27 14:45:25 -0700307}
308
309void RenderProxy::detachSurfaceTexture(DeferredLayerUpdater* layer) {
310 SETUP_TASK(detachSurfaceTexture);
311 args->layer = layer;
312 postAndWait(task);
313}
314
John Reckf47a5942014-06-30 16:20:04 -0700315CREATE_BRIDGE1(destroyHardwareResources, CanvasContext* context) {
316 args->context->destroyHardwareResources();
Chris Craikd41c4d82015-01-05 15:51:13 -0800317 return nullptr;
John Recke1628b72014-05-23 15:11:19 -0700318}
319
John Reckf47a5942014-06-30 16:20:04 -0700320void RenderProxy::destroyHardwareResources() {
321 SETUP_TASK(destroyHardwareResources);
John Recke1628b72014-05-23 15:11:19 -0700322 args->context = mContext;
John Recke1628b72014-05-23 15:11:19 -0700323 post(task);
324}
325
John Reckf47a5942014-06-30 16:20:04 -0700326CREATE_BRIDGE2(timMemory, RenderThread* thread, int level) {
327 CanvasContext::trimMemory(*args->thread, args->level);
Chris Craikd41c4d82015-01-05 15:51:13 -0800328 return nullptr;
John Reckf47a5942014-06-30 16:20:04 -0700329}
330
331void RenderProxy::trimMemory(int level) {
John Reckcd3a22c2014-08-06 13:33:59 -0700332 // Avoid creating a RenderThread to do a trimMemory.
333 if (RenderThread::hasInstance()) {
334 RenderThread& thread = RenderThread::getInstance();
335 SETUP_TASK(timMemory);
336 args->thread = &thread;
337 args->level = level;
338 thread.queue(task);
339 }
John Reckf47a5942014-06-30 16:20:04 -0700340}
341
John Reck28ad7b52014-04-07 16:59:25 -0700342CREATE_BRIDGE0(fence) {
343 // Intentionally empty
Chris Craikd41c4d82015-01-05 15:51:13 -0800344 return nullptr;
John Reck28ad7b52014-04-07 16:59:25 -0700345}
346
Andreas Gampe64bb4132014-11-22 00:35:09 +0000347template <typename T>
348void UNUSED(T t) {}
349
John Reck28ad7b52014-04-07 16:59:25 -0700350void RenderProxy::fence() {
351 SETUP_TASK(fence);
Andreas Gampe1e196742014-11-10 15:23:43 -0800352 UNUSED(args);
John Reck28ad7b52014-04-07 16:59:25 -0700353 postAndWait(task);
354}
355
John Reckf47a5942014-06-30 16:20:04 -0700356CREATE_BRIDGE1(stopDrawing, CanvasContext* context) {
357 args->context->stopDrawing();
Chris Craikd41c4d82015-01-05 15:51:13 -0800358 return nullptr;
John Reckf47a5942014-06-30 16:20:04 -0700359}
360
361void RenderProxy::stopDrawing() {
362 SETUP_TASK(stopDrawing);
363 args->context = mContext;
364 postAndWait(task);
365}
366
John Recka5dda642014-05-22 15:43:54 -0700367CREATE_BRIDGE1(notifyFramePending, CanvasContext* context) {
368 args->context->notifyFramePending();
Chris Craikd41c4d82015-01-05 15:51:13 -0800369 return nullptr;
John Recka5dda642014-05-22 15:43:54 -0700370}
371
372void RenderProxy::notifyFramePending() {
373 SETUP_TASK(notifyFramePending);
374 args->context = mContext;
375 mRenderThread.queueAtFront(task);
376}
377
John Reckfe5e7b72014-05-23 17:42:28 -0700378CREATE_BRIDGE2(dumpProfileInfo, CanvasContext* context, int fd) {
379 args->context->profiler().dumpData(args->fd);
Chris Craikd41c4d82015-01-05 15:51:13 -0800380 return nullptr;
John Reckfe5e7b72014-05-23 17:42:28 -0700381}
382
383void RenderProxy::dumpProfileInfo(int fd) {
384 SETUP_TASK(dumpProfileInfo);
385 args->context = mContext;
386 args->fd = fd;
387 postAndWait(task);
388}
389
Chris Craik2ae07332015-01-21 14:22:39 -0800390CREATE_BRIDGE1(dumpGraphicsMemory, int fd) {
391 FILE *file = fdopen(args->fd, "a");
392 if (Caches::hasInstance()) {
393 String8 cachesLog;
394 Caches::getInstance().dumpMemoryUsage(cachesLog);
395 fprintf(file, "\nCaches:\n%s\n", cachesLog.string());
396 } else {
397 fprintf(file, "\nNo caches instance.\n");
398 }
399 fflush(file);
Chris Craikd41c4d82015-01-05 15:51:13 -0800400 return nullptr;
John Reck0e89e2b2014-10-31 14:49:06 -0700401}
402
Chris Craik2ae07332015-01-21 14:22:39 -0800403void RenderProxy::dumpGraphicsMemory(int fd) {
404 SETUP_TASK(dumpGraphicsMemory);
John Reck0e89e2b2014-10-31 14:49:06 -0700405 args->fd = fd;
406 staticPostAndWait(task);
407}
408
John Reck3b202512014-06-23 13:13:08 -0700409CREATE_BRIDGE4(setTextureAtlas, RenderThread* thread, GraphicBuffer* buffer, int64_t* map, size_t size) {
410 CanvasContext::setTextureAtlas(*args->thread, args->buffer, args->map, args->size);
Chris Craikd41c4d82015-01-05 15:51:13 -0800411 args->buffer->decStrong(nullptr);
412 return nullptr;
John Reck3b202512014-06-23 13:13:08 -0700413}
414
415void RenderProxy::setTextureAtlas(const sp<GraphicBuffer>& buffer, int64_t* map, size_t size) {
416 SETUP_TASK(setTextureAtlas);
417 args->thread = &mRenderThread;
418 args->buffer = buffer.get();
Chris Craikd41c4d82015-01-05 15:51:13 -0800419 args->buffer->incStrong(nullptr);
John Reck3b202512014-06-23 13:13:08 -0700420 args->map = map;
421 args->size = size;
422 post(task);
423}
424
John Reck4f02bf42014-01-03 18:09:17 -0800425void RenderProxy::post(RenderTask* task) {
426 mRenderThread.queue(task);
427}
428
429void* RenderProxy::postAndWait(MethodInvokeRenderTask* task) {
430 void* retval;
431 task->setReturnPtr(&retval);
432 SignalingRenderTask syncTask(task, &mSyncMutex, &mSyncCondition);
433 AutoMutex _lock(mSyncMutex);
Chris Craik738ec3a2014-07-25 18:25:02 +0000434 mRenderThread.queue(&syncTask);
435 mSyncCondition.wait(mSyncMutex);
John Reck4f02bf42014-01-03 18:09:17 -0800436 return retval;
437}
438
John Reck0e89e2b2014-10-31 14:49:06 -0700439void* RenderProxy::staticPostAndWait(MethodInvokeRenderTask* task) {
440 RenderThread& thread = RenderThread::getInstance();
441 void* retval;
442 task->setReturnPtr(&retval);
443 Mutex mutex;
444 Condition condition;
445 SignalingRenderTask syncTask(task, &mutex, &condition);
446 AutoMutex _lock(mutex);
447 thread.queue(&syncTask);
448 condition.wait(mutex);
449 return retval;
450}
451
John Reck4f02bf42014-01-03 18:09:17 -0800452} /* namespace renderthread */
453} /* namespace uirenderer */
454} /* namespace android */