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 | |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 55 | enum class DumpFlags { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 56 | kFrameStats = 1 << 0, |
| 57 | kReset = 1 << 1, |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 58 | }; |
| 59 | MAKE_FLAGS_ENUM(DumpFlags) |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 60 | |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 61 | CREATE_BRIDGE4(createContext, RenderThread* thread, bool translucent, |
| 62 | RenderNode* rootRenderNode, IContextFactory* contextFactory) { |
| 63 | return new CanvasContext(*args->thread, args->translucent, |
| 64 | args->rootRenderNode, args->contextFactory); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 65 | } |
| 66 | |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 67 | RenderProxy::RenderProxy(bool translucent, RenderNode* rootRenderNode, IContextFactory* contextFactory) |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 68 | : mRenderThread(RenderThread::getInstance()) |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 69 | , mContext(nullptr) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 70 | SETUP_TASK(createContext); |
| 71 | args->translucent = translucent; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 72 | args->rootRenderNode = rootRenderNode; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 73 | args->thread = &mRenderThread; |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 74 | args->contextFactory = contextFactory; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 75 | mContext = (CanvasContext*) postAndWait(task); |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 76 | mDrawFrameTask.setContext(&mRenderThread, mContext); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | RenderProxy::~RenderProxy() { |
| 80 | destroyContext(); |
| 81 | } |
| 82 | |
| 83 | CREATE_BRIDGE1(destroyContext, CanvasContext* context) { |
| 84 | delete args->context; |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 85 | return nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | void RenderProxy::destroyContext() { |
| 89 | if (mContext) { |
| 90 | SETUP_TASK(destroyContext); |
| 91 | args->context = mContext; |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 92 | mContext = nullptr; |
| 93 | mDrawFrameTask.setContext(nullptr, nullptr); |
John Reck | 668f0e3 | 2014-03-26 15:10:40 -0700 | [diff] [blame] | 94 | // This is also a fence as we need to be certain that there are no |
| 95 | // outstanding mDrawFrame tasks posted before it is destroyed |
| 96 | postAndWait(task); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 100 | CREATE_BRIDGE2(setFrameInterval, RenderThread* thread, nsecs_t frameIntervalNanos) { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 101 | args->thread->setFrameInterval(args->frameIntervalNanos); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 102 | return nullptr; |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | void RenderProxy::setFrameInterval(nsecs_t frameIntervalNanos) { |
| 106 | SETUP_TASK(setFrameInterval); |
| 107 | args->thread = &mRenderThread; |
| 108 | args->frameIntervalNanos = frameIntervalNanos; |
| 109 | post(task); |
| 110 | } |
| 111 | |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 112 | CREATE_BRIDGE2(setSwapBehavior, CanvasContext* context, SwapBehavior swapBehavior) { |
| 113 | args->context->setSwapBehavior(args->swapBehavior); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 114 | return nullptr; |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | void RenderProxy::setSwapBehavior(SwapBehavior swapBehavior) { |
| 118 | SETUP_TASK(setSwapBehavior); |
| 119 | args->context = mContext; |
| 120 | args->swapBehavior = swapBehavior; |
| 121 | post(task); |
| 122 | } |
| 123 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 124 | CREATE_BRIDGE1(loadSystemProperties, CanvasContext* context) { |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 125 | bool needsRedraw = false; |
| 126 | if (Caches::hasInstance()) { |
| 127 | needsRedraw = Caches::getInstance().initProperties(); |
| 128 | } |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 129 | if (args->context->profiler().loadSystemProperties()) { |
| 130 | needsRedraw = true; |
| 131 | } |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 132 | return (void*) needsRedraw; |
| 133 | } |
| 134 | |
| 135 | bool RenderProxy::loadSystemProperties() { |
| 136 | SETUP_TASK(loadSystemProperties); |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 137 | args->context = mContext; |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 138 | return (bool) postAndWait(task); |
| 139 | } |
| 140 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 141 | CREATE_BRIDGE2(initialize, CanvasContext* context, ANativeWindow* window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 142 | return (void*) args->context->initialize(args->window); |
| 143 | } |
| 144 | |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 145 | bool RenderProxy::initialize(const sp<ANativeWindow>& window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 146 | SETUP_TASK(initialize); |
| 147 | args->context = mContext; |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 148 | args->window = window.get(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 149 | return (bool) postAndWait(task); |
| 150 | } |
| 151 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 152 | CREATE_BRIDGE2(updateSurface, CanvasContext* context, ANativeWindow* window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 153 | args->context->updateSurface(args->window); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 154 | return nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 155 | } |
| 156 | |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 157 | void RenderProxy::updateSurface(const sp<ANativeWindow>& window) { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 158 | SETUP_TASK(updateSurface); |
| 159 | args->context = mContext; |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 160 | args->window = window.get(); |
| 161 | postAndWait(task); |
| 162 | } |
| 163 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 164 | CREATE_BRIDGE2(pauseSurface, CanvasContext* context, ANativeWindow* window) { |
John Reck | 01a5ea3 | 2014-12-03 13:01:07 -0800 | [diff] [blame] | 165 | return (void*) args->context->pauseSurface(args->window); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 166 | } |
| 167 | |
John Reck | 01a5ea3 | 2014-12-03 13:01:07 -0800 | [diff] [blame] | 168 | bool RenderProxy::pauseSurface(const sp<ANativeWindow>& window) { |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 169 | SETUP_TASK(pauseSurface); |
| 170 | args->context = mContext; |
| 171 | args->window = window.get(); |
John Reck | 01a5ea3 | 2014-12-03 13:01:07 -0800 | [diff] [blame] | 172 | return (bool) postAndWait(task); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 173 | } |
| 174 | |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 175 | CREATE_BRIDGE7(setup, CanvasContext* context, int width, int height, |
| 176 | Vector3 lightCenter, float lightRadius, |
| 177 | uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) { |
| 178 | args->context->setup(args->width, args->height, args->lightCenter, args->lightRadius, |
| 179 | args->ambientShadowAlpha, args->spotShadowAlpha); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 180 | return nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 181 | } |
| 182 | |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 183 | void RenderProxy::setup(int width, int height, const Vector3& lightCenter, float lightRadius, |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 184 | uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha, float density) { |
| 185 | mDrawFrameTask.setDensity(density); |
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->lightCenter = lightCenter; |
| 191 | args->lightRadius = lightRadius; |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 192 | args->ambientShadowAlpha = ambientShadowAlpha; |
| 193 | args->spotShadowAlpha = spotShadowAlpha; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 194 | post(task); |
| 195 | } |
| 196 | |
John Reck | 63a0667 | 2014-05-07 13:45:54 -0700 | [diff] [blame] | 197 | CREATE_BRIDGE2(setOpaque, CanvasContext* context, bool opaque) { |
| 198 | args->context->setOpaque(args->opaque); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 199 | return nullptr; |
John Reck | 63a0667 | 2014-05-07 13:45:54 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | void RenderProxy::setOpaque(bool opaque) { |
| 203 | SETUP_TASK(setOpaque); |
| 204 | args->context = mContext; |
| 205 | args->opaque = opaque; |
| 206 | post(task); |
| 207 | } |
| 208 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 209 | int64_t* RenderProxy::frameInfo() { |
| 210 | return mDrawFrameTask.frameInfo(); |
| 211 | } |
| 212 | |
| 213 | int RenderProxy::syncAndDrawFrame() { |
| 214 | return mDrawFrameTask.drawFrame(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 215 | } |
| 216 | |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 217 | CREATE_BRIDGE1(destroy, CanvasContext* context) { |
| 218 | args->context->destroy(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 219 | return nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 220 | } |
| 221 | |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame] | 222 | void RenderProxy::destroy() { |
| 223 | SETUP_TASK(destroy); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 224 | args->context = mContext; |
John Reck | fae904d | 2014-04-14 11:01:57 -0700 | [diff] [blame] | 225 | // destroyCanvasAndSurface() needs a fence as when it returns the |
| 226 | // underlying BufferQueue is going to be released from under |
| 227 | // the render thread. |
| 228 | postAndWait(task); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 229 | } |
| 230 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 231 | CREATE_BRIDGE2(invokeFunctor, RenderThread* thread, Functor* functor) { |
| 232 | CanvasContext::invokeFunctor(*args->thread, args->functor); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 233 | return nullptr; |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | void RenderProxy::invokeFunctor(Functor* functor, bool waitForCompletion) { |
John Reck | d3d8daf | 2014-04-10 15:00:13 -0700 | [diff] [blame] | 237 | ATRACE_CALL(); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 238 | RenderThread& thread = RenderThread::getInstance(); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 239 | SETUP_TASK(invokeFunctor); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 240 | args->thread = &thread; |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 241 | args->functor = functor; |
| 242 | if (waitForCompletion) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 243 | // waitForCompletion = true is expected to be fairly rare and only |
| 244 | // happen in destruction. Thus it should be fine to temporarily |
| 245 | // create a Mutex |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 246 | staticPostAndWait(task); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 247 | } else { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 248 | thread.queue(task); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 249 | } |
| 250 | } |
| 251 | |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 252 | CREATE_BRIDGE2(runWithGlContext, CanvasContext* context, RenderTask* task) { |
| 253 | args->context->runWithGlContext(args->task); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 254 | return nullptr; |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | void RenderProxy::runWithGlContext(RenderTask* gltask) { |
| 258 | SETUP_TASK(runWithGlContext); |
| 259 | args->context = mContext; |
| 260 | args->task = gltask; |
| 261 | postAndWait(task); |
| 262 | } |
| 263 | |
John Reck | 749906b | 2014-10-03 15:02:19 -0700 | [diff] [blame] | 264 | CREATE_BRIDGE2(createTextureLayer, RenderThread* thread, CanvasContext* context) { |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 265 | Layer* layer = args->context->createTextureLayer(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 266 | if (!layer) return nullptr; |
John Reck | 749906b | 2014-10-03 15:02:19 -0700 | [diff] [blame] | 267 | return new DeferredLayerUpdater(*args->thread, layer); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | DeferredLayerUpdater* RenderProxy::createTextureLayer() { |
| 271 | SETUP_TASK(createTextureLayer); |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 272 | args->context = mContext; |
John Reck | 749906b | 2014-10-03 15:02:19 -0700 | [diff] [blame] | 273 | args->thread = &mRenderThread; |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 274 | void* retval = postAndWait(task); |
| 275 | DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(retval); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 276 | return layer; |
| 277 | } |
| 278 | |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 279 | CREATE_BRIDGE2(buildLayer, CanvasContext* context, RenderNode* node) { |
| 280 | args->context->buildLayer(args->node); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 281 | return nullptr; |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | void RenderProxy::buildLayer(RenderNode* node) { |
| 285 | SETUP_TASK(buildLayer); |
| 286 | args->context = mContext; |
| 287 | args->node = node; |
| 288 | postAndWait(task); |
| 289 | } |
| 290 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 291 | CREATE_BRIDGE3(copyLayerInto, CanvasContext* context, DeferredLayerUpdater* layer, |
| 292 | SkBitmap* bitmap) { |
| 293 | bool success = args->context->copyLayerInto(args->layer, args->bitmap); |
| 294 | return (void*) success; |
| 295 | } |
| 296 | |
| 297 | bool RenderProxy::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap) { |
| 298 | SETUP_TASK(copyLayerInto); |
| 299 | args->context = mContext; |
| 300 | args->layer = layer; |
| 301 | args->bitmap = bitmap; |
| 302 | return (bool) postAndWait(task); |
| 303 | } |
| 304 | |
John Reck | d72e0a3 | 2014-05-29 18:56:11 -0700 | [diff] [blame] | 305 | void RenderProxy::pushLayerUpdate(DeferredLayerUpdater* layer) { |
| 306 | mDrawFrameTask.pushLayerUpdate(layer); |
| 307 | } |
| 308 | |
| 309 | void RenderProxy::cancelLayerUpdate(DeferredLayerUpdater* layer) { |
| 310 | mDrawFrameTask.removeLayerUpdate(layer); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 311 | } |
| 312 | |
John Reck | 918ad52 | 2014-06-27 14:45:25 -0700 | [diff] [blame] | 313 | CREATE_BRIDGE1(detachSurfaceTexture, DeferredLayerUpdater* layer) { |
| 314 | args->layer->detachSurfaceTexture(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 315 | return nullptr; |
John Reck | 918ad52 | 2014-06-27 14:45:25 -0700 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | void RenderProxy::detachSurfaceTexture(DeferredLayerUpdater* layer) { |
| 319 | SETUP_TASK(detachSurfaceTexture); |
| 320 | args->layer = layer; |
| 321 | postAndWait(task); |
| 322 | } |
| 323 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 324 | CREATE_BRIDGE1(destroyHardwareResources, CanvasContext* context) { |
| 325 | args->context->destroyHardwareResources(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 326 | return nullptr; |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 327 | } |
| 328 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 329 | void RenderProxy::destroyHardwareResources() { |
| 330 | SETUP_TASK(destroyHardwareResources); |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 331 | args->context = mContext; |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 332 | post(task); |
| 333 | } |
| 334 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 335 | CREATE_BRIDGE2(timMemory, RenderThread* thread, int level) { |
| 336 | CanvasContext::trimMemory(*args->thread, args->level); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 337 | return nullptr; |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | void RenderProxy::trimMemory(int level) { |
John Reck | cd3a22c | 2014-08-06 13:33:59 -0700 | [diff] [blame] | 341 | // Avoid creating a RenderThread to do a trimMemory. |
| 342 | if (RenderThread::hasInstance()) { |
| 343 | RenderThread& thread = RenderThread::getInstance(); |
| 344 | SETUP_TASK(timMemory); |
| 345 | args->thread = &thread; |
| 346 | args->level = level; |
| 347 | thread.queue(task); |
| 348 | } |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 349 | } |
| 350 | |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 351 | CREATE_BRIDGE0(fence) { |
| 352 | // Intentionally empty |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 353 | return nullptr; |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 354 | } |
| 355 | |
Andreas Gampe | 64bb413 | 2014-11-22 00:35:09 +0000 | [diff] [blame] | 356 | template <typename T> |
| 357 | void UNUSED(T t) {} |
| 358 | |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 359 | void RenderProxy::fence() { |
| 360 | SETUP_TASK(fence); |
Andreas Gampe | 1e19674 | 2014-11-10 15:23:43 -0800 | [diff] [blame] | 361 | UNUSED(args); |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 362 | postAndWait(task); |
| 363 | } |
| 364 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 365 | CREATE_BRIDGE1(stopDrawing, CanvasContext* context) { |
| 366 | args->context->stopDrawing(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 367 | return nullptr; |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | void RenderProxy::stopDrawing() { |
| 371 | SETUP_TASK(stopDrawing); |
| 372 | args->context = mContext; |
| 373 | postAndWait(task); |
| 374 | } |
| 375 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 376 | CREATE_BRIDGE1(notifyFramePending, CanvasContext* context) { |
| 377 | args->context->notifyFramePending(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 378 | return nullptr; |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | void RenderProxy::notifyFramePending() { |
| 382 | SETUP_TASK(notifyFramePending); |
| 383 | args->context = mContext; |
| 384 | mRenderThread.queueAtFront(task); |
| 385 | } |
| 386 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 387 | CREATE_BRIDGE3(dumpProfileInfo, CanvasContext* context, int fd, int dumpFlags) { |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 388 | args->context->profiler().dumpData(args->fd); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 389 | if (args->dumpFlags & DumpFlags::kFrameStats) { |
| 390 | args->context->dumpFrames(args->fd); |
| 391 | } |
| 392 | if (args->dumpFlags & DumpFlags::kReset) { |
| 393 | args->context->resetFrameStats(); |
| 394 | } |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 395 | return nullptr; |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 396 | } |
| 397 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 398 | void RenderProxy::dumpProfileInfo(int fd, int dumpFlags) { |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 399 | SETUP_TASK(dumpProfileInfo); |
| 400 | args->context = mContext; |
| 401 | args->fd = fd; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 402 | args->dumpFlags = dumpFlags; |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 403 | postAndWait(task); |
| 404 | } |
| 405 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 406 | CREATE_BRIDGE2(dumpGraphicsMemory, int fd, RenderThread* thread) { |
| 407 | args->thread->jankTracker().dump(args->fd); |
| 408 | |
Chris Craik | 2ae0733 | 2015-01-21 14:22:39 -0800 | [diff] [blame] | 409 | FILE *file = fdopen(args->fd, "a"); |
| 410 | if (Caches::hasInstance()) { |
| 411 | String8 cachesLog; |
| 412 | Caches::getInstance().dumpMemoryUsage(cachesLog); |
| 413 | fprintf(file, "\nCaches:\n%s\n", cachesLog.string()); |
| 414 | } else { |
| 415 | fprintf(file, "\nNo caches instance.\n"); |
| 416 | } |
| 417 | fflush(file); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 418 | return nullptr; |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 419 | } |
| 420 | |
Chris Craik | 2ae0733 | 2015-01-21 14:22:39 -0800 | [diff] [blame] | 421 | void RenderProxy::dumpGraphicsMemory(int fd) { |
| 422 | SETUP_TASK(dumpGraphicsMemory); |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 423 | args->fd = fd; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 424 | args->thread = &RenderThread::getInstance(); |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 425 | staticPostAndWait(task); |
| 426 | } |
| 427 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 428 | CREATE_BRIDGE4(setTextureAtlas, RenderThread* thread, GraphicBuffer* buffer, int64_t* map, size_t size) { |
| 429 | CanvasContext::setTextureAtlas(*args->thread, args->buffer, args->map, args->size); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 430 | args->buffer->decStrong(nullptr); |
| 431 | return nullptr; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | void RenderProxy::setTextureAtlas(const sp<GraphicBuffer>& buffer, int64_t* map, size_t size) { |
| 435 | SETUP_TASK(setTextureAtlas); |
| 436 | args->thread = &mRenderThread; |
| 437 | args->buffer = buffer.get(); |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 438 | args->buffer->incStrong(nullptr); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 439 | args->map = map; |
| 440 | args->size = size; |
| 441 | post(task); |
| 442 | } |
| 443 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 444 | void RenderProxy::post(RenderTask* task) { |
| 445 | mRenderThread.queue(task); |
| 446 | } |
| 447 | |
| 448 | void* RenderProxy::postAndWait(MethodInvokeRenderTask* task) { |
| 449 | void* retval; |
| 450 | task->setReturnPtr(&retval); |
| 451 | SignalingRenderTask syncTask(task, &mSyncMutex, &mSyncCondition); |
| 452 | AutoMutex _lock(mSyncMutex); |
Chris Craik | 738ec3a | 2014-07-25 18:25:02 +0000 | [diff] [blame] | 453 | mRenderThread.queue(&syncTask); |
| 454 | mSyncCondition.wait(mSyncMutex); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 455 | return retval; |
| 456 | } |
| 457 | |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 458 | void* RenderProxy::staticPostAndWait(MethodInvokeRenderTask* task) { |
| 459 | RenderThread& thread = RenderThread::getInstance(); |
| 460 | void* retval; |
| 461 | task->setReturnPtr(&retval); |
| 462 | Mutex mutex; |
| 463 | Condition condition; |
| 464 | SignalingRenderTask syncTask(task, &mutex, &condition); |
| 465 | AutoMutex _lock(mutex); |
| 466 | thread.queue(&syncTask); |
| 467 | condition.wait(mutex); |
| 468 | return retval; |
| 469 | } |
| 470 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 471 | } /* namespace renderthread */ |
| 472 | } /* namespace uirenderer */ |
| 473 | } /* namespace android */ |