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 | |
| 19 | #include "CanvasContext.h" |
| 20 | #include "RenderTask.h" |
| 21 | #include "RenderThread.h" |
| 22 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 23 | #include "../DeferredLayerUpdater.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 24 | #include "../DisplayList.h" |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 25 | #include "../LayerRenderer.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 26 | #include "../Rect.h" |
| 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 | 797b95b | 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 | |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 55 | CREATE_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 Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 59 | } |
| 60 | |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 61 | RenderProxy::RenderProxy(bool translucent, RenderNode* rootRenderNode, IContextFactory* contextFactory) |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 62 | : mRenderThread(RenderThread::getInstance()) |
| 63 | , mContext(0) { |
| 64 | SETUP_TASK(createContext); |
| 65 | args->translucent = translucent; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 66 | args->rootRenderNode = rootRenderNode; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 67 | args->thread = &mRenderThread; |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 68 | args->contextFactory = contextFactory; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 69 | mContext = (CanvasContext*) postAndWait(task); |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 70 | mDrawFrameTask.setContext(&mRenderThread, mContext); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | RenderProxy::~RenderProxy() { |
| 74 | destroyContext(); |
| 75 | } |
| 76 | |
| 77 | CREATE_BRIDGE1(destroyContext, CanvasContext* context) { |
| 78 | delete args->context; |
| 79 | return NULL; |
| 80 | } |
| 81 | |
| 82 | void RenderProxy::destroyContext() { |
| 83 | if (mContext) { |
| 84 | SETUP_TASK(destroyContext); |
| 85 | args->context = mContext; |
| 86 | mContext = 0; |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 87 | mDrawFrameTask.setContext(NULL, NULL); |
John Reck | 668f0e3 | 2014-03-26 15:10:40 -0700 | [diff] [blame] | 88 | // 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 Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 94 | CREATE_BRIDGE2(setFrameInterval, RenderThread* thread, nsecs_t frameIntervalNanos) { |
| 95 | args->thread->timeLord().setFrameInterval(args->frameIntervalNanos); |
| 96 | return NULL; |
| 97 | } |
| 98 | |
| 99 | void RenderProxy::setFrameInterval(nsecs_t frameIntervalNanos) { |
| 100 | SETUP_TASK(setFrameInterval); |
| 101 | args->thread = &mRenderThread; |
| 102 | args->frameIntervalNanos = frameIntervalNanos; |
| 103 | post(task); |
| 104 | } |
| 105 | |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 106 | CREATE_BRIDGE2(setSwapBehavior, CanvasContext* context, SwapBehavior swapBehavior) { |
| 107 | args->context->setSwapBehavior(args->swapBehavior); |
| 108 | return NULL; |
| 109 | } |
| 110 | |
| 111 | void RenderProxy::setSwapBehavior(SwapBehavior swapBehavior) { |
| 112 | SETUP_TASK(setSwapBehavior); |
| 113 | args->context = mContext; |
| 114 | args->swapBehavior = swapBehavior; |
| 115 | post(task); |
| 116 | } |
| 117 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 118 | CREATE_BRIDGE1(loadSystemProperties, CanvasContext* context) { |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 119 | bool needsRedraw = false; |
| 120 | if (Caches::hasInstance()) { |
| 121 | needsRedraw = Caches::getInstance().initProperties(); |
| 122 | } |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 123 | if (args->context->profiler().loadSystemProperties()) { |
| 124 | needsRedraw = true; |
| 125 | } |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 126 | return (void*) needsRedraw; |
| 127 | } |
| 128 | |
| 129 | bool RenderProxy::loadSystemProperties() { |
| 130 | SETUP_TASK(loadSystemProperties); |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 131 | args->context = mContext; |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 132 | return (bool) postAndWait(task); |
| 133 | } |
| 134 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 135 | CREATE_BRIDGE2(initialize, CanvasContext* context, ANativeWindow* window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 136 | return (void*) args->context->initialize(args->window); |
| 137 | } |
| 138 | |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 139 | bool RenderProxy::initialize(const sp<ANativeWindow>& window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 140 | SETUP_TASK(initialize); |
| 141 | args->context = mContext; |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 142 | args->window = window.get(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 143 | return (bool) postAndWait(task); |
| 144 | } |
| 145 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 146 | CREATE_BRIDGE2(updateSurface, CanvasContext* context, ANativeWindow* window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 147 | args->context->updateSurface(args->window); |
| 148 | return NULL; |
| 149 | } |
| 150 | |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 151 | void RenderProxy::updateSurface(const sp<ANativeWindow>& window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 152 | SETUP_TASK(updateSurface); |
| 153 | args->context = mContext; |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 154 | args->window = window.get(); |
| 155 | postAndWait(task); |
| 156 | } |
| 157 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 158 | CREATE_BRIDGE2(pauseSurface, CanvasContext* context, ANativeWindow* window) { |
John Reck | 01a5ea3 | 2014-12-03 13:01:07 -0800 | [diff] [blame] | 159 | return (void*) args->context->pauseSurface(args->window); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 160 | } |
| 161 | |
John Reck | 01a5ea3 | 2014-12-03 13:01:07 -0800 | [diff] [blame] | 162 | bool RenderProxy::pauseSurface(const sp<ANativeWindow>& window) { |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 163 | SETUP_TASK(pauseSurface); |
| 164 | args->context = mContext; |
| 165 | args->window = window.get(); |
John Reck | 01a5ea3 | 2014-12-03 13:01:07 -0800 | [diff] [blame] | 166 | return (bool) postAndWait(task); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 167 | } |
| 168 | |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 169 | CREATE_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); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 174 | return NULL; |
| 175 | } |
| 176 | |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 177 | void RenderProxy::setup(int width, int height, const Vector3& lightCenter, float lightRadius, |
| 178 | uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 179 | SETUP_TASK(setup); |
| 180 | args->context = mContext; |
| 181 | args->width = width; |
| 182 | args->height = height; |
Chris Craik | 797b95b | 2014-05-20 18:10:25 -0700 | [diff] [blame] | 183 | args->lightCenter = lightCenter; |
| 184 | args->lightRadius = lightRadius; |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 185 | args->ambientShadowAlpha = ambientShadowAlpha; |
| 186 | args->spotShadowAlpha = spotShadowAlpha; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 187 | post(task); |
| 188 | } |
| 189 | |
John Reck | 63a0667 | 2014-05-07 13:45:54 -0700 | [diff] [blame] | 190 | CREATE_BRIDGE2(setOpaque, CanvasContext* context, bool opaque) { |
| 191 | args->context->setOpaque(args->opaque); |
| 192 | return NULL; |
| 193 | } |
| 194 | |
| 195 | void RenderProxy::setOpaque(bool opaque) { |
| 196 | SETUP_TASK(setOpaque); |
| 197 | args->context = mContext; |
| 198 | args->opaque = opaque; |
| 199 | post(task); |
| 200 | } |
| 201 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 202 | int RenderProxy::syncAndDrawFrame(nsecs_t frameTimeNanos, nsecs_t recordDurationNanos, |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 203 | float density) { |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 204 | mDrawFrameTask.setDensity(density); |
| 205 | return mDrawFrameTask.drawFrame(frameTimeNanos, recordDurationNanos); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 206 | } |
| 207 | |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 208 | CREATE_BRIDGE1(destroy, CanvasContext* context) { |
| 209 | args->context->destroy(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 210 | return NULL; |
| 211 | } |
| 212 | |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 213 | void RenderProxy::destroy() { |
| 214 | SETUP_TASK(destroy); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 215 | args->context = mContext; |
John Reck | fae904d | 2014-04-14 11:01:57 -0700 | [diff] [blame] | 216 | // 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 Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 220 | } |
| 221 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 222 | CREATE_BRIDGE2(invokeFunctor, RenderThread* thread, Functor* functor) { |
| 223 | CanvasContext::invokeFunctor(*args->thread, args->functor); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 224 | return NULL; |
| 225 | } |
| 226 | |
| 227 | void RenderProxy::invokeFunctor(Functor* functor, bool waitForCompletion) { |
John Reck | d3d8daf | 2014-04-10 15:00:13 -0700 | [diff] [blame] | 228 | ATRACE_CALL(); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 229 | RenderThread& thread = RenderThread::getInstance(); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 230 | SETUP_TASK(invokeFunctor); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 231 | args->thread = &thread; |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 232 | args->functor = functor; |
| 233 | if (waitForCompletion) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 234 | // 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 Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 237 | staticPostAndWait(task); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 238 | } else { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 239 | thread.queue(task); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 240 | } |
| 241 | } |
| 242 | |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 243 | CREATE_BRIDGE2(runWithGlContext, CanvasContext* context, RenderTask* task) { |
| 244 | args->context->runWithGlContext(args->task); |
| 245 | return NULL; |
| 246 | } |
| 247 | |
| 248 | void RenderProxy::runWithGlContext(RenderTask* gltask) { |
| 249 | SETUP_TASK(runWithGlContext); |
| 250 | args->context = mContext; |
| 251 | args->task = gltask; |
| 252 | postAndWait(task); |
| 253 | } |
| 254 | |
John Reck | 749906b | 2014-10-03 15:02:19 -0700 | [diff] [blame] | 255 | CREATE_BRIDGE2(createTextureLayer, RenderThread* thread, CanvasContext* context) { |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 256 | Layer* layer = args->context->createTextureLayer(); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 257 | if (!layer) return 0; |
John Reck | 749906b | 2014-10-03 15:02:19 -0700 | [diff] [blame] | 258 | return new DeferredLayerUpdater(*args->thread, layer); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | DeferredLayerUpdater* RenderProxy::createTextureLayer() { |
| 262 | SETUP_TASK(createTextureLayer); |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 263 | args->context = mContext; |
John Reck | 749906b | 2014-10-03 15:02:19 -0700 | [diff] [blame] | 264 | args->thread = &mRenderThread; |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 265 | void* retval = postAndWait(task); |
| 266 | DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(retval); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 267 | return layer; |
| 268 | } |
| 269 | |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 270 | CREATE_BRIDGE2(buildLayer, CanvasContext* context, RenderNode* node) { |
| 271 | args->context->buildLayer(args->node); |
| 272 | return NULL; |
| 273 | } |
| 274 | |
| 275 | void RenderProxy::buildLayer(RenderNode* node) { |
| 276 | SETUP_TASK(buildLayer); |
| 277 | args->context = mContext; |
| 278 | args->node = node; |
| 279 | postAndWait(task); |
| 280 | } |
| 281 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 282 | CREATE_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 | |
| 288 | bool 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 Reck | d72e0a3 | 2014-05-29 18:56:11 -0700 | [diff] [blame] | 296 | void RenderProxy::pushLayerUpdate(DeferredLayerUpdater* layer) { |
| 297 | mDrawFrameTask.pushLayerUpdate(layer); |
| 298 | } |
| 299 | |
| 300 | void RenderProxy::cancelLayerUpdate(DeferredLayerUpdater* layer) { |
| 301 | mDrawFrameTask.removeLayerUpdate(layer); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 302 | } |
| 303 | |
John Reck | 918ad52 | 2014-06-27 14:45:25 -0700 | [diff] [blame] | 304 | CREATE_BRIDGE1(detachSurfaceTexture, DeferredLayerUpdater* layer) { |
| 305 | args->layer->detachSurfaceTexture(); |
| 306 | return NULL; |
| 307 | } |
| 308 | |
| 309 | void RenderProxy::detachSurfaceTexture(DeferredLayerUpdater* layer) { |
| 310 | SETUP_TASK(detachSurfaceTexture); |
| 311 | args->layer = layer; |
| 312 | postAndWait(task); |
| 313 | } |
| 314 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 315 | CREATE_BRIDGE1(destroyHardwareResources, CanvasContext* context) { |
| 316 | args->context->destroyHardwareResources(); |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 317 | return NULL; |
| 318 | } |
| 319 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 320 | void RenderProxy::destroyHardwareResources() { |
| 321 | SETUP_TASK(destroyHardwareResources); |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 322 | args->context = mContext; |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 323 | post(task); |
| 324 | } |
| 325 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 326 | CREATE_BRIDGE2(timMemory, RenderThread* thread, int level) { |
| 327 | CanvasContext::trimMemory(*args->thread, args->level); |
| 328 | return NULL; |
| 329 | } |
| 330 | |
| 331 | void RenderProxy::trimMemory(int level) { |
John Reck | cd3a22c | 2014-08-06 13:33:59 -0700 | [diff] [blame] | 332 | // 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 Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 340 | } |
| 341 | |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 342 | CREATE_BRIDGE0(fence) { |
| 343 | // Intentionally empty |
| 344 | return NULL; |
| 345 | } |
| 346 | |
| 347 | void RenderProxy::fence() { |
| 348 | SETUP_TASK(fence); |
| 349 | postAndWait(task); |
| 350 | } |
| 351 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 352 | CREATE_BRIDGE1(stopDrawing, CanvasContext* context) { |
| 353 | args->context->stopDrawing(); |
| 354 | return NULL; |
| 355 | } |
| 356 | |
| 357 | void RenderProxy::stopDrawing() { |
| 358 | SETUP_TASK(stopDrawing); |
| 359 | args->context = mContext; |
| 360 | postAndWait(task); |
| 361 | } |
| 362 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 363 | CREATE_BRIDGE1(notifyFramePending, CanvasContext* context) { |
| 364 | args->context->notifyFramePending(); |
| 365 | return NULL; |
| 366 | } |
| 367 | |
| 368 | void RenderProxy::notifyFramePending() { |
| 369 | SETUP_TASK(notifyFramePending); |
| 370 | args->context = mContext; |
| 371 | mRenderThread.queueAtFront(task); |
| 372 | } |
| 373 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 374 | CREATE_BRIDGE2(dumpProfileInfo, CanvasContext* context, int fd) { |
| 375 | args->context->profiler().dumpData(args->fd); |
| 376 | return NULL; |
| 377 | } |
| 378 | |
| 379 | void RenderProxy::dumpProfileInfo(int fd) { |
| 380 | SETUP_TASK(dumpProfileInfo); |
| 381 | args->context = mContext; |
| 382 | args->fd = fd; |
| 383 | postAndWait(task); |
| 384 | } |
| 385 | |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 386 | CREATE_BRIDGE1(outputLogBuffer, int fd) { |
| 387 | RenderNode::outputLogBuffer(args->fd); |
| 388 | return NULL; |
| 389 | } |
| 390 | |
| 391 | void RenderProxy::outputLogBuffer(int fd) { |
| 392 | SETUP_TASK(outputLogBuffer); |
| 393 | args->fd = fd; |
| 394 | staticPostAndWait(task); |
| 395 | } |
| 396 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 397 | CREATE_BRIDGE4(setTextureAtlas, RenderThread* thread, GraphicBuffer* buffer, int64_t* map, size_t size) { |
| 398 | CanvasContext::setTextureAtlas(*args->thread, args->buffer, args->map, args->size); |
| 399 | args->buffer->decStrong(0); |
| 400 | return NULL; |
| 401 | } |
| 402 | |
| 403 | void RenderProxy::setTextureAtlas(const sp<GraphicBuffer>& buffer, int64_t* map, size_t size) { |
| 404 | SETUP_TASK(setTextureAtlas); |
| 405 | args->thread = &mRenderThread; |
| 406 | args->buffer = buffer.get(); |
| 407 | args->buffer->incStrong(0); |
| 408 | args->map = map; |
| 409 | args->size = size; |
| 410 | post(task); |
| 411 | } |
| 412 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 413 | void RenderProxy::post(RenderTask* task) { |
| 414 | mRenderThread.queue(task); |
| 415 | } |
| 416 | |
| 417 | void* RenderProxy::postAndWait(MethodInvokeRenderTask* task) { |
| 418 | void* retval; |
| 419 | task->setReturnPtr(&retval); |
| 420 | SignalingRenderTask syncTask(task, &mSyncMutex, &mSyncCondition); |
| 421 | AutoMutex _lock(mSyncMutex); |
Chris Craik | 738ec3a | 2014-07-25 18:25:02 +0000 | [diff] [blame] | 422 | mRenderThread.queue(&syncTask); |
| 423 | mSyncCondition.wait(mSyncMutex); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 424 | return retval; |
| 425 | } |
| 426 | |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 427 | void* RenderProxy::staticPostAndWait(MethodInvokeRenderTask* task) { |
| 428 | RenderThread& thread = RenderThread::getInstance(); |
| 429 | void* retval; |
| 430 | task->setReturnPtr(&retval); |
| 431 | Mutex mutex; |
| 432 | Condition condition; |
| 433 | SignalingRenderTask syncTask(task, &mutex, &condition); |
| 434 | AutoMutex _lock(mutex); |
| 435 | thread.queue(&syncTask); |
| 436 | condition.wait(mutex); |
| 437 | return retval; |
| 438 | } |
| 439 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 440 | } /* namespace renderthread */ |
| 441 | } /* namespace uirenderer */ |
| 442 | } /* namespace android */ |