John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 1 | /* |
| 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 Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 17 | #include "RenderProxy.h" |
| 18 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 19 | #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 Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 27 | |
| 28 | namespace android { |
| 29 | namespace uirenderer { |
| 30 | namespace renderthread { |
| 31 | |
| 32 | #define ARGS(method) method ## Args |
| 33 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 34 | #define CREATE_BRIDGE0(name) CREATE_BRIDGE(name,,,,,,,,) |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 35 | #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 Craik | 797b95b2 | 2014-05-20 18:10:25 -0700 | [diff] [blame] | 39 | #define CREATE_BRIDGE5(name, a1, a2, a3, a4, a5) CREATE_BRIDGE(name, a1,a2,a3,a4,a5,,,) |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 40 | #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 Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 42 | #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 Salyzyn | 546f353 | 2014-06-10 12:29:14 -0700 | [diff] [blame] | 50 | "METHOD_INVOKE_PAYLOAD_SIZE %zu is smaller than sizeof(" #method "Args) %zu", \ |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 51 | METHOD_INVOKE_PAYLOAD_SIZE, sizeof(ARGS(method))); \ |
John Reck | e2c4552 | 2014-04-07 17:31:44 -0700 | [diff] [blame] | 52 | MethodInvokeRenderTask* task = new MethodInvokeRenderTask((RunnableMethod) Bridge_ ## method); \ |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 53 | ARGS(method) *args = (ARGS(method) *) task->payload() |
| 54 | |
Chris Craik | 53e51e4 | 2015-06-01 10:35:35 -0700 | [diff] [blame] | 55 | namespace DumpFlags { |
| 56 | enum { |
| 57 | FrameStats = 1 << 0, |
| 58 | Reset = 1 << 1, |
| 59 | }; |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 60 | }; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 61 | |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 62 | CREATE_BRIDGE4(createContext, RenderThread* thread, bool translucent, |
| 63 | RenderNode* rootRenderNode, IContextFactory* contextFactory) { |
| 64 | return new CanvasContext(*args->thread, args->translucent, |
| 65 | args->rootRenderNode, args->contextFactory); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 66 | } |
| 67 | |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 68 | RenderProxy::RenderProxy(bool translucent, RenderNode* rootRenderNode, IContextFactory* contextFactory) |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 69 | : mRenderThread(RenderThread::getInstance()) |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 70 | , mContext(nullptr) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 71 | SETUP_TASK(createContext); |
| 72 | args->translucent = translucent; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 73 | args->rootRenderNode = rootRenderNode; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 74 | args->thread = &mRenderThread; |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 75 | args->contextFactory = contextFactory; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 76 | mContext = (CanvasContext*) postAndWait(task); |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 77 | mDrawFrameTask.setContext(&mRenderThread, mContext, rootRenderNode); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | RenderProxy::~RenderProxy() { |
| 81 | destroyContext(); |
| 82 | } |
| 83 | |
| 84 | CREATE_BRIDGE1(destroyContext, CanvasContext* context) { |
| 85 | delete args->context; |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 86 | return nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | void RenderProxy::destroyContext() { |
| 90 | if (mContext) { |
| 91 | SETUP_TASK(destroyContext); |
| 92 | args->context = mContext; |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 93 | mContext = nullptr; |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 94 | mDrawFrameTask.setContext(nullptr, nullptr, nullptr); |
John Reck | 668f0e3 | 2014-03-26 15:10:40 -0700 | [diff] [blame] | 95 | // 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 Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 98 | } |
| 99 | } |
| 100 | |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 101 | CREATE_BRIDGE2(setSwapBehavior, CanvasContext* context, SwapBehavior swapBehavior) { |
| 102 | args->context->setSwapBehavior(args->swapBehavior); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 103 | return nullptr; |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | void RenderProxy::setSwapBehavior(SwapBehavior swapBehavior) { |
| 107 | SETUP_TASK(setSwapBehavior); |
| 108 | args->context = mContext; |
| 109 | args->swapBehavior = swapBehavior; |
| 110 | post(task); |
| 111 | } |
| 112 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 113 | CREATE_BRIDGE1(loadSystemProperties, CanvasContext* context) { |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 114 | bool needsRedraw = false; |
| 115 | if (Caches::hasInstance()) { |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 116 | needsRedraw = Properties::load(); |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 117 | } |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 118 | if (args->context->profiler().consumeProperties()) { |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 119 | needsRedraw = true; |
| 120 | } |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 121 | return (void*) needsRedraw; |
| 122 | } |
| 123 | |
| 124 | bool RenderProxy::loadSystemProperties() { |
| 125 | SETUP_TASK(loadSystemProperties); |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 126 | args->context = mContext; |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 127 | return (bool) postAndWait(task); |
| 128 | } |
| 129 | |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 130 | CREATE_BRIDGE2(setName, CanvasContext* context, const char* name) { |
| 131 | args->context->setName(std::string(args->name)); |
| 132 | return nullptr; |
| 133 | } |
| 134 | |
| 135 | void RenderProxy::setName(const char* name) { |
| 136 | SETUP_TASK(setName); |
| 137 | args->context = mContext; |
| 138 | args->name = name; |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 139 | postAndWait(task); // block since name/value pointers owned by caller |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 140 | } |
| 141 | |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 142 | CREATE_BRIDGE2(initialize, CanvasContext* context, Surface* surface) { |
| 143 | args->context->initialize(args->surface); |
Thomas Buhot | 0bcd0cb | 2015-12-04 12:18:03 +0100 | [diff] [blame] | 144 | return nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 145 | } |
| 146 | |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 147 | void RenderProxy::initialize(const sp<Surface>& surface) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 148 | SETUP_TASK(initialize); |
| 149 | args->context = mContext; |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 150 | args->surface = surface.get(); |
Thomas Buhot | 0bcd0cb | 2015-12-04 12:18:03 +0100 | [diff] [blame] | 151 | post(task); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 152 | } |
| 153 | |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 154 | CREATE_BRIDGE2(updateSurface, CanvasContext* context, Surface* surface) { |
| 155 | args->context->updateSurface(args->surface); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 156 | return nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 157 | } |
| 158 | |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 159 | void RenderProxy::updateSurface(const sp<Surface>& surface) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 160 | SETUP_TASK(updateSurface); |
| 161 | args->context = mContext; |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 162 | args->surface = surface.get(); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 163 | postAndWait(task); |
| 164 | } |
| 165 | |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 166 | CREATE_BRIDGE2(pauseSurface, CanvasContext* context, Surface* surface) { |
| 167 | return (void*) args->context->pauseSurface(args->surface); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 168 | } |
| 169 | |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 170 | bool RenderProxy::pauseSurface(const sp<Surface>& surface) { |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 171 | SETUP_TASK(pauseSurface); |
| 172 | args->context = mContext; |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 173 | args->surface = surface.get(); |
John Reck | 01a5ea3 | 2014-12-03 13:01:07 -0800 | [diff] [blame] | 174 | return (bool) postAndWait(task); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 175 | } |
| 176 | |
Alan Viverette | 50210d9 | 2015-05-14 18:05:36 -0700 | [diff] [blame] | 177 | CREATE_BRIDGE6(setup, CanvasContext* context, int width, int height, |
| 178 | float lightRadius, uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) { |
| 179 | args->context->setup(args->width, args->height, args->lightRadius, |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 180 | args->ambientShadowAlpha, args->spotShadowAlpha); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 181 | return nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 182 | } |
| 183 | |
Alan Viverette | 50210d9 | 2015-05-14 18:05:36 -0700 | [diff] [blame] | 184 | void RenderProxy::setup(int width, int height, float lightRadius, |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 185 | uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 186 | SETUP_TASK(setup); |
| 187 | args->context = mContext; |
| 188 | args->width = width; |
| 189 | args->height = height; |
Chris Craik | 797b95b2 | 2014-05-20 18:10:25 -0700 | [diff] [blame] | 190 | args->lightRadius = lightRadius; |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 191 | args->ambientShadowAlpha = ambientShadowAlpha; |
| 192 | args->spotShadowAlpha = spotShadowAlpha; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 193 | post(task); |
| 194 | } |
| 195 | |
Alan Viverette | 50210d9 | 2015-05-14 18:05:36 -0700 | [diff] [blame] | 196 | CREATE_BRIDGE2(setLightCenter, CanvasContext* context, Vector3 lightCenter) { |
| 197 | args->context->setLightCenter(args->lightCenter); |
| 198 | return nullptr; |
| 199 | } |
| 200 | |
| 201 | void RenderProxy::setLightCenter(const Vector3& lightCenter) { |
| 202 | SETUP_TASK(setLightCenter); |
| 203 | args->context = mContext; |
| 204 | args->lightCenter = lightCenter; |
| 205 | post(task); |
| 206 | } |
| 207 | |
John Reck | 63a0667 | 2014-05-07 13:45:54 -0700 | [diff] [blame] | 208 | CREATE_BRIDGE2(setOpaque, CanvasContext* context, bool opaque) { |
| 209 | args->context->setOpaque(args->opaque); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 210 | return nullptr; |
John Reck | 63a0667 | 2014-05-07 13:45:54 -0700 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | void RenderProxy::setOpaque(bool opaque) { |
| 214 | SETUP_TASK(setOpaque); |
| 215 | args->context = mContext; |
| 216 | args->opaque = opaque; |
| 217 | post(task); |
| 218 | } |
| 219 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 220 | int64_t* RenderProxy::frameInfo() { |
| 221 | return mDrawFrameTask.frameInfo(); |
| 222 | } |
| 223 | |
| 224 | int RenderProxy::syncAndDrawFrame() { |
| 225 | return mDrawFrameTask.drawFrame(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 226 | } |
| 227 | |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 228 | CREATE_BRIDGE1(destroy, CanvasContext* context) { |
| 229 | args->context->destroy(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 230 | return nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 231 | } |
| 232 | |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 233 | void RenderProxy::destroy() { |
| 234 | SETUP_TASK(destroy); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 235 | args->context = mContext; |
John Reck | fae904d | 2014-04-14 11:01:57 -0700 | [diff] [blame] | 236 | // destroyCanvasAndSurface() needs a fence as when it returns the |
| 237 | // underlying BufferQueue is going to be released from under |
| 238 | // the render thread. |
| 239 | postAndWait(task); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 240 | } |
| 241 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 242 | CREATE_BRIDGE2(invokeFunctor, RenderThread* thread, Functor* functor) { |
| 243 | CanvasContext::invokeFunctor(*args->thread, args->functor); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 244 | return nullptr; |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | void RenderProxy::invokeFunctor(Functor* functor, bool waitForCompletion) { |
John Reck | d3d8daf | 2014-04-10 15:00:13 -0700 | [diff] [blame] | 248 | ATRACE_CALL(); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 249 | RenderThread& thread = RenderThread::getInstance(); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 250 | SETUP_TASK(invokeFunctor); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 251 | args->thread = &thread; |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 252 | args->functor = functor; |
| 253 | if (waitForCompletion) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 254 | // waitForCompletion = true is expected to be fairly rare and only |
| 255 | // happen in destruction. Thus it should be fine to temporarily |
| 256 | // create a Mutex |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 257 | staticPostAndWait(task); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 258 | } else { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 259 | thread.queue(task); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 260 | } |
| 261 | } |
| 262 | |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 263 | CREATE_BRIDGE2(runWithGlContext, CanvasContext* context, RenderTask* task) { |
| 264 | args->context->runWithGlContext(args->task); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 265 | return nullptr; |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | void RenderProxy::runWithGlContext(RenderTask* gltask) { |
| 269 | SETUP_TASK(runWithGlContext); |
| 270 | args->context = mContext; |
| 271 | args->task = gltask; |
| 272 | postAndWait(task); |
| 273 | } |
| 274 | |
John Reck | c36df95 | 2015-07-29 10:09:36 -0700 | [diff] [blame] | 275 | CREATE_BRIDGE1(createTextureLayer, CanvasContext* context) { |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 276 | Layer* layer = args->context->createTextureLayer(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 277 | if (!layer) return nullptr; |
John Reck | c36df95 | 2015-07-29 10:09:36 -0700 | [diff] [blame] | 278 | return new DeferredLayerUpdater(layer); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | DeferredLayerUpdater* RenderProxy::createTextureLayer() { |
| 282 | SETUP_TASK(createTextureLayer); |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 283 | args->context = mContext; |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 284 | void* retval = postAndWait(task); |
| 285 | DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(retval); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 286 | return layer; |
| 287 | } |
| 288 | |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 289 | CREATE_BRIDGE2(buildLayer, CanvasContext* context, RenderNode* node) { |
| 290 | args->context->buildLayer(args->node); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 291 | return nullptr; |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | void RenderProxy::buildLayer(RenderNode* node) { |
| 295 | SETUP_TASK(buildLayer); |
| 296 | args->context = mContext; |
| 297 | args->node = node; |
| 298 | postAndWait(task); |
| 299 | } |
| 300 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 301 | CREATE_BRIDGE3(copyLayerInto, CanvasContext* context, DeferredLayerUpdater* layer, |
| 302 | SkBitmap* bitmap) { |
| 303 | bool success = args->context->copyLayerInto(args->layer, args->bitmap); |
| 304 | return (void*) success; |
| 305 | } |
| 306 | |
John Reck | 3731dc2 | 2015-04-13 15:20:29 -0700 | [diff] [blame] | 307 | bool RenderProxy::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap& bitmap) { |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 308 | SETUP_TASK(copyLayerInto); |
| 309 | args->context = mContext; |
| 310 | args->layer = layer; |
John Reck | 3731dc2 | 2015-04-13 15:20:29 -0700 | [diff] [blame] | 311 | args->bitmap = &bitmap; |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 312 | return (bool) postAndWait(task); |
| 313 | } |
| 314 | |
John Reck | d72e0a3 | 2014-05-29 18:56:11 -0700 | [diff] [blame] | 315 | void RenderProxy::pushLayerUpdate(DeferredLayerUpdater* layer) { |
| 316 | mDrawFrameTask.pushLayerUpdate(layer); |
| 317 | } |
| 318 | |
| 319 | void RenderProxy::cancelLayerUpdate(DeferredLayerUpdater* layer) { |
| 320 | mDrawFrameTask.removeLayerUpdate(layer); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 321 | } |
| 322 | |
John Reck | 918ad52 | 2014-06-27 14:45:25 -0700 | [diff] [blame] | 323 | CREATE_BRIDGE1(detachSurfaceTexture, DeferredLayerUpdater* layer) { |
| 324 | args->layer->detachSurfaceTexture(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 325 | return nullptr; |
John Reck | 918ad52 | 2014-06-27 14:45:25 -0700 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | void RenderProxy::detachSurfaceTexture(DeferredLayerUpdater* layer) { |
| 329 | SETUP_TASK(detachSurfaceTexture); |
| 330 | args->layer = layer; |
| 331 | postAndWait(task); |
| 332 | } |
| 333 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 334 | CREATE_BRIDGE1(destroyHardwareResources, CanvasContext* context) { |
| 335 | args->context->destroyHardwareResources(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 336 | return nullptr; |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 337 | } |
| 338 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 339 | void RenderProxy::destroyHardwareResources() { |
| 340 | SETUP_TASK(destroyHardwareResources); |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 341 | args->context = mContext; |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 342 | post(task); |
| 343 | } |
| 344 | |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 345 | CREATE_BRIDGE2(trimMemory, RenderThread* thread, int level) { |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 346 | CanvasContext::trimMemory(*args->thread, args->level); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 347 | return nullptr; |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | void RenderProxy::trimMemory(int level) { |
John Reck | cd3a22c | 2014-08-06 13:33:59 -0700 | [diff] [blame] | 351 | // Avoid creating a RenderThread to do a trimMemory. |
| 352 | if (RenderThread::hasInstance()) { |
| 353 | RenderThread& thread = RenderThread::getInstance(); |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 354 | SETUP_TASK(trimMemory); |
John Reck | cd3a22c | 2014-08-06 13:33:59 -0700 | [diff] [blame] | 355 | args->thread = &thread; |
| 356 | args->level = level; |
| 357 | thread.queue(task); |
| 358 | } |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 359 | } |
| 360 | |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 361 | CREATE_BRIDGE2(overrideProperty, const char* name, const char* value) { |
| 362 | Properties::overrideProperty(args->name, args->value); |
| 363 | return nullptr; |
| 364 | } |
| 365 | |
| 366 | void RenderProxy::overrideProperty(const char* name, const char* value) { |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 367 | SETUP_TASK(overrideProperty); |
| 368 | args->name = name; |
| 369 | args->value = value; |
| 370 | staticPostAndWait(task); // expensive, but block here since name/value pointers owned by caller |
| 371 | } |
| 372 | |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 373 | CREATE_BRIDGE0(fence) { |
| 374 | // Intentionally empty |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 375 | return nullptr; |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 376 | } |
| 377 | |
Andreas Gampe | 64bb413 | 2014-11-22 00:35:09 +0000 | [diff] [blame] | 378 | template <typename T> |
| 379 | void UNUSED(T t) {} |
| 380 | |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 381 | void RenderProxy::fence() { |
| 382 | SETUP_TASK(fence); |
Andreas Gampe | 1e19674 | 2014-11-10 15:23:43 -0800 | [diff] [blame] | 383 | UNUSED(args); |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 384 | postAndWait(task); |
| 385 | } |
| 386 | |
Thomas Buhot | c0a0e1a | 2016-01-18 10:31:58 +0100 | [diff] [blame] | 387 | void RenderProxy::staticFence() { |
| 388 | SETUP_TASK(fence); |
| 389 | UNUSED(args); |
| 390 | staticPostAndWait(task); |
| 391 | } |
| 392 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 393 | CREATE_BRIDGE1(stopDrawing, CanvasContext* context) { |
| 394 | args->context->stopDrawing(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 395 | return nullptr; |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | void RenderProxy::stopDrawing() { |
| 399 | SETUP_TASK(stopDrawing); |
| 400 | args->context = mContext; |
| 401 | postAndWait(task); |
| 402 | } |
| 403 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 404 | CREATE_BRIDGE1(notifyFramePending, CanvasContext* context) { |
| 405 | args->context->notifyFramePending(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 406 | return nullptr; |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | void RenderProxy::notifyFramePending() { |
| 410 | SETUP_TASK(notifyFramePending); |
| 411 | args->context = mContext; |
| 412 | mRenderThread.queueAtFront(task); |
| 413 | } |
| 414 | |
John Reck | 7f2e5e3 | 2015-05-05 11:00:53 -0700 | [diff] [blame] | 415 | CREATE_BRIDGE4(dumpProfileInfo, CanvasContext* context, RenderThread* thread, |
| 416 | int fd, int dumpFlags) { |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 417 | args->context->profiler().dumpData(args->fd); |
John Reck | 7f2e5e3 | 2015-05-05 11:00:53 -0700 | [diff] [blame] | 418 | args->thread->jankTracker().dump(args->fd); |
Chris Craik | 53e51e4 | 2015-06-01 10:35:35 -0700 | [diff] [blame] | 419 | if (args->dumpFlags & DumpFlags::FrameStats) { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 420 | args->context->dumpFrames(args->fd); |
| 421 | } |
Chris Craik | 53e51e4 | 2015-06-01 10:35:35 -0700 | [diff] [blame] | 422 | if (args->dumpFlags & DumpFlags::Reset) { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 423 | args->context->resetFrameStats(); |
| 424 | } |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 425 | return nullptr; |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 426 | } |
| 427 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 428 | void RenderProxy::dumpProfileInfo(int fd, int dumpFlags) { |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 429 | SETUP_TASK(dumpProfileInfo); |
| 430 | args->context = mContext; |
John Reck | 7f2e5e3 | 2015-05-05 11:00:53 -0700 | [diff] [blame] | 431 | args->thread = &mRenderThread; |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 432 | args->fd = fd; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 433 | args->dumpFlags = dumpFlags; |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 434 | postAndWait(task); |
| 435 | } |
| 436 | |
John Reck | 7f2e5e3 | 2015-05-05 11:00:53 -0700 | [diff] [blame] | 437 | CREATE_BRIDGE1(resetProfileInfo, CanvasContext* context) { |
| 438 | args->context->resetFrameStats(); |
| 439 | return nullptr; |
| 440 | } |
| 441 | |
| 442 | void RenderProxy::resetProfileInfo() { |
| 443 | SETUP_TASK(resetProfileInfo); |
| 444 | args->context = mContext; |
| 445 | postAndWait(task); |
| 446 | } |
| 447 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 448 | CREATE_BRIDGE2(dumpGraphicsMemory, int fd, RenderThread* thread) { |
| 449 | args->thread->jankTracker().dump(args->fd); |
| 450 | |
Chris Craik | 2ae0733 | 2015-01-21 14:22:39 -0800 | [diff] [blame] | 451 | 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 Craik | ff3edce | 2016-01-14 10:04:08 -0800 | [diff] [blame] | 459 | #if HWUI_NEW_OPS |
| 460 | fprintf(file, "\nPipeline=FrameBuilder\n"); |
| 461 | #else |
| 462 | fprintf(file, "\nPipeline=OpenGLRenderer\n"); |
| 463 | #endif |
Chris Craik | 2ae0733 | 2015-01-21 14:22:39 -0800 | [diff] [blame] | 464 | fflush(file); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 465 | return nullptr; |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 466 | } |
| 467 | |
Chris Craik | 2ae0733 | 2015-01-21 14:22:39 -0800 | [diff] [blame] | 468 | void RenderProxy::dumpGraphicsMemory(int fd) { |
youngmin0822.lee | c80c9ad | 2015-03-20 21:22:32 +0900 | [diff] [blame] | 469 | if (!RenderThread::hasInstance()) return; |
Chris Craik | 2ae0733 | 2015-01-21 14:22:39 -0800 | [diff] [blame] | 470 | SETUP_TASK(dumpGraphicsMemory); |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 471 | args->fd = fd; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 472 | args->thread = &RenderThread::getInstance(); |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 473 | staticPostAndWait(task); |
| 474 | } |
| 475 | |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 476 | CREATE_BRIDGE4(setTextureAtlas, RenderThread* thread, GraphicBuffer* buffer, int64_t* map, |
| 477 | size_t size) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 478 | CanvasContext::setTextureAtlas(*args->thread, args->buffer, args->map, args->size); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 479 | args->buffer->decStrong(nullptr); |
| 480 | return nullptr; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | void 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 Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 487 | args->buffer->incStrong(nullptr); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 488 | args->map = map; |
| 489 | args->size = size; |
| 490 | post(task); |
| 491 | } |
| 492 | |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 493 | CREATE_BRIDGE2(setProcessStatsBuffer, RenderThread* thread, int fd) { |
| 494 | args->thread->jankTracker().switchStorageToAshmem(args->fd); |
| 495 | close(args->fd); |
| 496 | return nullptr; |
| 497 | } |
| 498 | |
| 499 | void RenderProxy::setProcessStatsBuffer(int fd) { |
| 500 | SETUP_TASK(setProcessStatsBuffer); |
| 501 | args->thread = &mRenderThread; |
| 502 | args->fd = dup(fd); |
| 503 | post(task); |
| 504 | } |
| 505 | |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 506 | CREATE_BRIDGE3(addRenderNode, CanvasContext* context, RenderNode* node, bool placeFront) { |
| 507 | args->context->addRenderNode(args->node, args->placeFront); |
| 508 | return nullptr; |
| 509 | } |
| 510 | |
| 511 | void 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 | |
| 519 | CREATE_BRIDGE2(removeRenderNode, CanvasContext* context, RenderNode* node) { |
| 520 | args->context->removeRenderNode(args->node); |
| 521 | return nullptr; |
| 522 | } |
| 523 | |
| 524 | void RenderProxy::removeRenderNode(RenderNode* node) { |
| 525 | SETUP_TASK(removeRenderNode); |
| 526 | args->context = mContext; |
| 527 | args->node = node; |
| 528 | post(task); |
| 529 | } |
| 530 | |
| 531 | CREATE_BRIDGE2(drawRenderNode, CanvasContext* context, RenderNode* node) { |
| 532 | args->context->prepareAndDraw(args->node); |
| 533 | return nullptr; |
| 534 | } |
| 535 | |
| 536 | void 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 | |
Skuhne | b816087 | 2015-09-22 09:51:39 -0700 | [diff] [blame] | 544 | CREATE_BRIDGE5(setContentDrawBounds, CanvasContext* context, int left, int top, |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 545 | int right, int bottom) { |
Skuhne | b816087 | 2015-09-22 09:51:39 -0700 | [diff] [blame] | 546 | args->context->setContentDrawBounds(args->left, args->top, args->right, args->bottom); |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 547 | return nullptr; |
| 548 | } |
| 549 | |
Skuhne | b816087 | 2015-09-22 09:51:39 -0700 | [diff] [blame] | 550 | void RenderProxy::setContentDrawBounds(int left, int top, int right, int bottom) { |
| 551 | SETUP_TASK(setContentDrawBounds); |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 552 | 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 Reck | e248bd1 | 2015-08-05 13:53:53 -0700 | [diff] [blame] | 560 | CREATE_BRIDGE1(serializeDisplayListTree, CanvasContext* context) { |
| 561 | args->context->serializeDisplayListTree(); |
| 562 | return nullptr; |
| 563 | } |
| 564 | |
| 565 | void RenderProxy::serializeDisplayListTree() { |
| 566 | SETUP_TASK(serializeDisplayListTree); |
| 567 | args->context = mContext; |
| 568 | post(task); |
| 569 | } |
| 570 | |
Andres Morales | 06f5bc7 | 2015-12-15 15:21:31 -0800 | [diff] [blame] | 571 | CREATE_BRIDGE2(addFrameStatsObserver, CanvasContext* context, |
| 572 | FrameStatsObserver* frameStatsObserver) { |
| 573 | args->context->addFrameStatsObserver(args->frameStatsObserver); |
| 574 | if (args->frameStatsObserver != nullptr) { |
| 575 | args->frameStatsObserver->decStrong(args->context); |
| 576 | } |
| 577 | return nullptr; |
| 578 | } |
| 579 | |
| 580 | void RenderProxy::addFrameStatsObserver(FrameStatsObserver* observer) { |
| 581 | SETUP_TASK(addFrameStatsObserver); |
| 582 | args->context = mContext; |
| 583 | args->frameStatsObserver = observer; |
| 584 | if (observer != nullptr) { |
| 585 | observer->incStrong(mContext); |
| 586 | } |
| 587 | post(task); |
| 588 | } |
| 589 | |
| 590 | CREATE_BRIDGE2(removeFrameStatsObserver, CanvasContext* context, |
| 591 | FrameStatsObserver* frameStatsObserver) { |
| 592 | args->context->removeFrameStatsObserver(args->frameStatsObserver); |
| 593 | if (args->frameStatsObserver != nullptr) { |
| 594 | args->frameStatsObserver->decStrong(args->context); |
| 595 | } |
| 596 | return nullptr; |
| 597 | } |
| 598 | |
| 599 | void RenderProxy::removeFrameStatsObserver(FrameStatsObserver* observer) { |
| 600 | SETUP_TASK(removeFrameStatsObserver); |
| 601 | args->context = mContext; |
| 602 | args->frameStatsObserver = observer; |
| 603 | if (observer != nullptr) { |
| 604 | observer->incStrong(mContext); |
| 605 | } |
| 606 | post(task); |
| 607 | } |
| 608 | |
| 609 | CREATE_BRIDGE1(getDroppedFrameReportCount, CanvasContext* context) { |
| 610 | return (void*) args->context->getDroppedFrameReportCount(); |
| 611 | } |
| 612 | |
| 613 | long RenderProxy::getDroppedFrameReportCount() { |
| 614 | SETUP_TASK(getDroppedFrameReportCount); |
| 615 | args->context = mContext; |
| 616 | return (long) postAndWait(task); |
| 617 | } |
| 618 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 619 | void RenderProxy::post(RenderTask* task) { |
| 620 | mRenderThread.queue(task); |
| 621 | } |
| 622 | |
| 623 | void* RenderProxy::postAndWait(MethodInvokeRenderTask* task) { |
| 624 | void* retval; |
| 625 | task->setReturnPtr(&retval); |
John Reck | cba287b | 2015-11-10 12:52:44 -0800 | [diff] [blame] | 626 | SignalingRenderTask syncTask(task, &mSyncMutex, &mSyncCondition); |
| 627 | AutoMutex _lock(mSyncMutex); |
| 628 | mRenderThread.queue(&syncTask); |
| 629 | mSyncCondition.wait(mSyncMutex); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 630 | return retval; |
| 631 | } |
| 632 | |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 633 | void* RenderProxy::staticPostAndWait(MethodInvokeRenderTask* task) { |
| 634 | RenderThread& thread = RenderThread::getInstance(); |
| 635 | void* retval; |
| 636 | task->setReturnPtr(&retval); |
Chris Craik | 0a24b14 | 2015-10-19 17:10:19 -0700 | [diff] [blame] | 637 | thread.queueAndWait(task); |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 638 | return retval; |
| 639 | } |
| 640 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 641 | } /* namespace renderthread */ |
| 642 | } /* namespace uirenderer */ |
| 643 | } /* namespace android */ |