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" |
John Reck | a896306 | 2017-06-14 10:47:50 -0700 | [diff] [blame] | 21 | #include "Properties.h" |
John Reck | 10dd058 | 2016-03-31 16:36:16 -0700 | [diff] [blame] | 22 | #include "Readback.h" |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 23 | #include "Rect.h" |
John Reck | 5cca8f2 | 2018-12-10 17:06:22 -0800 | [diff] [blame] | 24 | #include "WebViewFunctorManager.h" |
John Reck | b90d4cb | 2018-04-19 17:05:35 -0700 | [diff] [blame] | 25 | #include "pipeline/skia/SkiaOpenGLPipeline.h" |
Stan Iliev | 3310fb1 | 2017-03-23 16:56:51 -0400 | [diff] [blame] | 26 | #include "pipeline/skia/VectorDrawableAtlas.h" |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 27 | #include "renderstate/RenderState.h" |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 28 | #include "renderthread/CanvasContext.h" |
John Reck | 4387190 | 2016-08-01 14:39:24 -0700 | [diff] [blame] | 29 | #include "renderthread/EglManager.h" |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 30 | #include "renderthread/RenderTask.h" |
| 31 | #include "renderthread/RenderThread.h" |
| 32 | #include "utils/Macros.h" |
John Reck | 4387190 | 2016-08-01 14:39:24 -0700 | [diff] [blame] | 33 | #include "utils/TimeUtils.h" |
John Reck | 322b8ab | 2019-03-14 13:15:28 -0700 | [diff] [blame] | 34 | #include "utils/TraceUtils.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 35 | |
sergeyv | 59eecb52 | 2016-11-17 17:54:57 -0800 | [diff] [blame] | 36 | #include <ui/GraphicBuffer.h> |
| 37 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 38 | namespace android { |
| 39 | namespace uirenderer { |
| 40 | namespace renderthread { |
| 41 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 42 | RenderProxy::RenderProxy(bool translucent, RenderNode* rootRenderNode, |
| 43 | IContextFactory* contextFactory) |
| 44 | : mRenderThread(RenderThread::getInstance()), mContext(nullptr) { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 45 | mContext = mRenderThread.queue().runSync([&]() -> CanvasContext* { |
| 46 | return CanvasContext::create(mRenderThread, translucent, rootRenderNode, contextFactory); |
| 47 | }); |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 48 | mDrawFrameTask.setContext(&mRenderThread, mContext, rootRenderNode); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | RenderProxy::~RenderProxy() { |
| 52 | destroyContext(); |
| 53 | } |
| 54 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 55 | void RenderProxy::destroyContext() { |
| 56 | if (mContext) { |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 57 | mDrawFrameTask.setContext(nullptr, nullptr, nullptr); |
John Reck | 668f0e3 | 2014-03-26 15:10:40 -0700 | [diff] [blame] | 58 | // This is also a fence as we need to be certain that there are no |
| 59 | // outstanding mDrawFrame tasks posted before it is destroyed |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 60 | mRenderThread.queue().runSync([this]() { delete mContext; }); |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 61 | mContext = nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 65 | void RenderProxy::setSwapBehavior(SwapBehavior swapBehavior) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 66 | mRenderThread.queue().post([this, swapBehavior]() { mContext->setSwapBehavior(swapBehavior); }); |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | bool RenderProxy::loadSystemProperties() { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 70 | return mRenderThread.queue().runSync([this]() -> bool { |
John Reck | d9d7f12 | 2018-05-03 14:40:56 -0700 | [diff] [blame] | 71 | bool needsRedraw = Properties::load(); |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 72 | if (mContext->profiler().consumeProperties()) { |
| 73 | needsRedraw = true; |
| 74 | } |
| 75 | return needsRedraw; |
| 76 | }); |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | void RenderProxy::setName(const char* name) { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 80 | // block since name/value pointers owned by caller |
| 81 | // TODO: Support move arguments |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 82 | mRenderThread.queue().runSync([this, name]() { mContext->setName(std::string(name)); }); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 83 | } |
| 84 | |
John Reck | 8785ceb | 2018-10-29 16:45:58 -0700 | [diff] [blame] | 85 | void RenderProxy::setSurface(const sp<Surface>& surface) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 86 | mRenderThread.queue().post( |
| 87 | [ this, surf = surface ]() mutable { mContext->setSurface(std::move(surf)); }); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 88 | } |
| 89 | |
John Reck | 8785ceb | 2018-10-29 16:45:58 -0700 | [diff] [blame] | 90 | void RenderProxy::allocateBuffers() { |
| 91 | mRenderThread.queue().post([=]() { mContext->allocateBuffers(); }); |
Jorim Jaggi | 7823ee7 | 2018-07-17 15:24:16 +0200 | [diff] [blame] | 92 | } |
| 93 | |
John Reck | 8785ceb | 2018-10-29 16:45:58 -0700 | [diff] [blame] | 94 | bool RenderProxy::pause() { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 95 | return mRenderThread.queue().runSync([this]() -> bool { return mContext->pauseSurface(); }); |
John Reck | 8afcc76 | 2016-04-13 10:24:06 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | void RenderProxy::setStopped(bool stopped) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 99 | mRenderThread.queue().runSync([this, stopped]() { mContext->setStopped(stopped); }); |
John Reck | 8afcc76 | 2016-04-13 10:24:06 -0700 | [diff] [blame] | 100 | } |
| 101 | |
John Reck | 8785ceb | 2018-10-29 16:45:58 -0700 | [diff] [blame] | 102 | void RenderProxy::setLightAlpha(uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 103 | mRenderThread.queue().post( |
John Reck | 8785ceb | 2018-10-29 16:45:58 -0700 | [diff] [blame] | 104 | [=]() { mContext->setLightAlpha(ambientShadowAlpha, spotShadowAlpha); }); |
Alan Viverette | 50210d9 | 2015-05-14 18:05:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
John Reck | 8785ceb | 2018-10-29 16:45:58 -0700 | [diff] [blame] | 107 | void RenderProxy::setLightGeometry(const Vector3& lightCenter, float lightRadius) { |
| 108 | mRenderThread.queue().post([=]() { mContext->setLightGeometry(lightCenter, lightRadius); }); |
John Reck | 63a0667 | 2014-05-07 13:45:54 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | void RenderProxy::setOpaque(bool opaque) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 112 | mRenderThread.queue().post([=]() { mContext->setOpaque(opaque); }); |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | void RenderProxy::setWideGamut(bool wideGamut) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 116 | mRenderThread.queue().post([=]() { mContext->setWideGamut(wideGamut); }); |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 117 | } |
| 118 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 119 | int64_t* RenderProxy::frameInfo() { |
| 120 | return mDrawFrameTask.frameInfo(); |
| 121 | } |
| 122 | |
John Reck | 2de950d | 2017-01-25 10:58:30 -0800 | [diff] [blame] | 123 | int RenderProxy::syncAndDrawFrame() { |
| 124 | return mDrawFrameTask.drawFrame(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 125 | } |
| 126 | |
John Reck | 2de950d | 2017-01-25 10:58:30 -0800 | [diff] [blame] | 127 | void RenderProxy::destroy() { |
John Reck | fae904d | 2014-04-14 11:01:57 -0700 | [diff] [blame] | 128 | // destroyCanvasAndSurface() needs a fence as when it returns the |
| 129 | // underlying BufferQueue is going to be released from under |
| 130 | // the render thread. |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 131 | mRenderThread.queue().runSync([=]() { mContext->destroy(); }); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | void RenderProxy::invokeFunctor(Functor* functor, bool waitForCompletion) { |
John Reck | d3d8daf | 2014-04-10 15:00:13 -0700 | [diff] [blame] | 135 | ATRACE_CALL(); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 136 | RenderThread& thread = RenderThread::getInstance(); |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 137 | auto invoke = [&thread, functor]() { CanvasContext::invokeFunctor(thread, functor); }; |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 138 | if (waitForCompletion) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 139 | // waitForCompletion = true is expected to be fairly rare and only |
| 140 | // happen in destruction. Thus it should be fine to temporarily |
| 141 | // create a Mutex |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 142 | thread.queue().runSync(std::move(invoke)); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 143 | } else { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 144 | thread.queue().post(std::move(invoke)); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | |
John Reck | 283bb46 | 2018-12-13 16:40:14 -0800 | [diff] [blame] | 148 | void RenderProxy::destroyFunctor(int functor) { |
| 149 | ATRACE_CALL(); |
| 150 | RenderThread& thread = RenderThread::getInstance(); |
John Reck | 5cca8f2 | 2018-12-10 17:06:22 -0800 | [diff] [blame] | 151 | thread.queue().post([=]() { WebViewFunctorManager::instance().destroyFunctor(functor); }); |
John Reck | 283bb46 | 2018-12-13 16:40:14 -0800 | [diff] [blame] | 152 | } |
| 153 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 154 | DeferredLayerUpdater* RenderProxy::createTextureLayer() { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 155 | return mRenderThread.queue().runSync([this]() -> auto { |
| 156 | return mContext->createTextureLayer(); |
| 157 | }); |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 158 | } |
| 159 | |
John Reck | 2de950d | 2017-01-25 10:58:30 -0800 | [diff] [blame] | 160 | void RenderProxy::buildLayer(RenderNode* node) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 161 | mRenderThread.queue().runSync([&]() { mContext->buildLayer(node); }); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 162 | } |
| 163 | |
John Reck | 3731dc2 | 2015-04-13 15:20:29 -0700 | [diff] [blame] | 164 | bool RenderProxy::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap& bitmap) { |
John Reck | fbeac3c | 2019-03-29 11:24:56 -0700 | [diff] [blame] | 165 | ATRACE_NAME("TextureView#getBitmap"); |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 166 | auto& thread = RenderThread::getInstance(); |
John Reck | 5cca8f2 | 2018-12-10 17:06:22 -0800 | [diff] [blame] | 167 | return thread.queue().runSync([&]() -> bool { |
| 168 | return thread.readback().copyLayerInto(layer, &bitmap) == CopyResult::Success; |
| 169 | }); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 170 | } |
| 171 | |
John Reck | d72e0a3 | 2014-05-29 18:56:11 -0700 | [diff] [blame] | 172 | void RenderProxy::pushLayerUpdate(DeferredLayerUpdater* layer) { |
| 173 | mDrawFrameTask.pushLayerUpdate(layer); |
| 174 | } |
| 175 | |
| 176 | void RenderProxy::cancelLayerUpdate(DeferredLayerUpdater* layer) { |
| 177 | mDrawFrameTask.removeLayerUpdate(layer); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 178 | } |
| 179 | |
John Reck | 918ad52 | 2014-06-27 14:45:25 -0700 | [diff] [blame] | 180 | void RenderProxy::detachSurfaceTexture(DeferredLayerUpdater* layer) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 181 | return mRenderThread.queue().runSync([&]() { layer->detachSurfaceTexture(); }); |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 182 | } |
| 183 | |
John Reck | 2de950d | 2017-01-25 10:58:30 -0800 | [diff] [blame] | 184 | void RenderProxy::destroyHardwareResources() { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 185 | return mRenderThread.queue().runSync([&]() { mContext->destroyHardwareResources(); }); |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | void RenderProxy::trimMemory(int level) { |
John Reck | cd3a22c | 2014-08-06 13:33:59 -0700 | [diff] [blame] | 189 | // Avoid creating a RenderThread to do a trimMemory. |
| 190 | if (RenderThread::hasInstance()) { |
| 191 | RenderThread& thread = RenderThread::getInstance(); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 192 | thread.queue().post([&thread, level]() { CanvasContext::trimMemory(thread, level); }); |
John Reck | cd3a22c | 2014-08-06 13:33:59 -0700 | [diff] [blame] | 193 | } |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 194 | } |
| 195 | |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 196 | void RenderProxy::overrideProperty(const char* name, const char* value) { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 197 | // expensive, but block here since name/value pointers owned by caller |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 198 | RenderThread::getInstance().queue().runSync( |
| 199 | [&]() { Properties::overrideProperty(name, value); }); |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 200 | } |
| 201 | |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 202 | void RenderProxy::fence() { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 203 | mRenderThread.queue().runSync([]() {}); |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 204 | } |
| 205 | |
John Reck | e4c1e6c | 2018-05-24 16:27:35 -0700 | [diff] [blame] | 206 | int RenderProxy::maxTextureSize() { |
John Reck | 5cca8f2 | 2018-12-10 17:06:22 -0800 | [diff] [blame] | 207 | static int maxTextureSize = RenderThread::getInstance().queue().runSync( |
| 208 | []() { return DeviceInfo::get()->maxTextureSize(); }); |
John Reck | e4c1e6c | 2018-05-24 16:27:35 -0700 | [diff] [blame] | 209 | return maxTextureSize; |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | void RenderProxy::stopDrawing() { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 213 | mRenderThread.queue().runSync([this]() { mContext->stopDrawing(); }); |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | void RenderProxy::notifyFramePending() { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 217 | mRenderThread.queue().post([this]() { mContext->notifyFramePending(); }); |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 218 | } |
| 219 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 220 | void RenderProxy::dumpProfileInfo(int fd, int dumpFlags) { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 221 | mRenderThread.queue().runSync([&]() { |
| 222 | mContext->profiler().dumpData(fd); |
| 223 | if (dumpFlags & DumpFlags::FrameStats) { |
| 224 | mContext->dumpFrames(fd); |
| 225 | } |
| 226 | if (dumpFlags & DumpFlags::JankStats) { |
| 227 | mRenderThread.globalProfileData()->dump(fd); |
| 228 | } |
| 229 | if (dumpFlags & DumpFlags::Reset) { |
| 230 | mContext->resetFrameStats(); |
| 231 | } |
| 232 | }); |
John Reck | 7f2e5e3 | 2015-05-05 11:00:53 -0700 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | void RenderProxy::resetProfileInfo() { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 236 | mRenderThread.queue().runSync([=]() { mContext->resetFrameStats(); }); |
John Reck | 7f2e5e3 | 2015-05-05 11:00:53 -0700 | [diff] [blame] | 237 | } |
| 238 | |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 239 | uint32_t RenderProxy::frameTimePercentile(int percentile) { |
| 240 | return mRenderThread.queue().runSync([&]() -> auto { |
| 241 | return mRenderThread.globalProfileData()->findPercentile(percentile); |
| 242 | }); |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 243 | } |
| 244 | |
Chris Craik | 2ae0733 | 2015-01-21 14:22:39 -0800 | [diff] [blame] | 245 | void RenderProxy::dumpGraphicsMemory(int fd) { |
John Reck | ba7e965 | 2019-01-23 10:33:41 -0800 | [diff] [blame] | 246 | if (RenderThread::hasInstance()) { |
| 247 | auto& thread = RenderThread::getInstance(); |
| 248 | thread.queue().runSync([&]() { thread.dumpGraphicsMemory(fd); }); |
| 249 | } |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | void RenderProxy::setProcessStatsBuffer(int fd) { |
John Reck | df1742e | 2017-01-19 15:56:21 -0800 | [diff] [blame] | 253 | auto& rt = RenderThread::getInstance(); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 254 | rt.queue().post([&rt, fd = dup(fd) ]() { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 255 | rt.globalProfileData().switchStorageToAshmem(fd); |
| 256 | close(fd); |
| 257 | }); |
John Reck | df1742e | 2017-01-19 15:56:21 -0800 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | void RenderProxy::rotateProcessStatsBuffer() { |
John Reck | df1742e | 2017-01-19 15:56:21 -0800 | [diff] [blame] | 261 | auto& rt = RenderThread::getInstance(); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 262 | rt.queue().post([&rt]() { rt.globalProfileData().rotateStorage(); }); |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 263 | } |
| 264 | |
Tim Murray | 33eb07f | 2016-06-10 10:03:20 -0700 | [diff] [blame] | 265 | int RenderProxy::getRenderThreadTid() { |
| 266 | return mRenderThread.getTid(); |
| 267 | } |
| 268 | |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 269 | void RenderProxy::addRenderNode(RenderNode* node, bool placeFront) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 270 | mRenderThread.queue().post([=]() { mContext->addRenderNode(node, placeFront); }); |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | void RenderProxy::removeRenderNode(RenderNode* node) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 274 | mRenderThread.queue().post([=]() { mContext->removeRenderNode(node); }); |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | void RenderProxy::drawRenderNode(RenderNode* node) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 278 | mRenderThread.queue().runSync([=]() { mContext->prepareAndDraw(node); }); |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Skuhne | b816087 | 2015-09-22 09:51:39 -0700 | [diff] [blame] | 281 | void RenderProxy::setContentDrawBounds(int left, int top, int right, int bottom) { |
John Reck | f138b17 | 2017-09-08 11:00:42 -0700 | [diff] [blame] | 282 | mDrawFrameTask.setContentDrawBounds(left, top, right, bottom); |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 283 | } |
| 284 | |
John Reck | 5cca8f2 | 2018-12-10 17:06:22 -0800 | [diff] [blame] | 285 | void RenderProxy::setPictureCapturedCallback( |
| 286 | const std::function<void(sk_sp<SkPicture>&&)>& callback) { |
| 287 | mRenderThread.queue().post( |
| 288 | [ this, cb = callback ]() { mContext->setPictureCapturedCallback(cb); }); |
| 289 | } |
| 290 | |
Mihai Popa | 9568800 | 2018-02-23 16:10:11 +0000 | [diff] [blame] | 291 | void RenderProxy::setFrameCallback(std::function<void(int64_t)>&& callback) { |
| 292 | mDrawFrameTask.setFrameCallback(std::move(callback)); |
| 293 | } |
| 294 | |
John Reck | cc2eee8 | 2018-05-17 10:44:00 -0700 | [diff] [blame] | 295 | void RenderProxy::setFrameCompleteCallback(std::function<void(int64_t)>&& callback) { |
| 296 | mDrawFrameTask.setFrameCompleteCallback(std::move(callback)); |
| 297 | } |
| 298 | |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 299 | void RenderProxy::addFrameMetricsObserver(FrameMetricsObserver* observerPtr) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 300 | mRenderThread.queue().post([ this, observer = sp{observerPtr} ]() { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 301 | mContext->addFrameMetricsObserver(observer.get()); |
| 302 | }); |
Andres Morales | 06f5bc7 | 2015-12-15 15:21:31 -0800 | [diff] [blame] | 303 | } |
| 304 | |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 305 | void RenderProxy::removeFrameMetricsObserver(FrameMetricsObserver* observerPtr) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 306 | mRenderThread.queue().post([ this, observer = sp{observerPtr} ]() { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 307 | mContext->removeFrameMetricsObserver(observer.get()); |
| 308 | }); |
John Reck | 10dd058 | 2016-03-31 16:36:16 -0700 | [diff] [blame] | 309 | } |
| 310 | |
John Reck | bb3a358 | 2018-09-26 11:21:08 -0700 | [diff] [blame] | 311 | void RenderProxy::setForceDark(bool enable) { |
John Reck | 5cca8f2 | 2018-12-10 17:06:22 -0800 | [diff] [blame] | 312 | mRenderThread.queue().post([this, enable]() { mContext->setForceDark(enable); }); |
John Reck | bb3a358 | 2018-09-26 11:21:08 -0700 | [diff] [blame] | 313 | } |
| 314 | |
John Reck | 4d52722 | 2019-03-13 16:25:20 -0700 | [diff] [blame] | 315 | void RenderProxy::setRenderAheadDepth(int renderAhead) { |
| 316 | mRenderThread.queue().post([ context = mContext, renderAhead ] { |
| 317 | context->setRenderAheadDepth(renderAhead); |
| 318 | }); |
| 319 | } |
| 320 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 321 | int RenderProxy::copySurfaceInto(sp<Surface>& surface, int left, int top, int right, int bottom, |
| 322 | SkBitmap* bitmap) { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 323 | auto& thread = RenderThread::getInstance(); |
| 324 | return static_cast<int>(thread.queue().runSync([&]() -> auto { |
| 325 | return thread.readback().copySurfaceInto(*surface, Rect(left, top, right, bottom), bitmap); |
| 326 | })); |
John Reck | 4387190 | 2016-08-01 14:39:24 -0700 | [diff] [blame] | 327 | } |
| 328 | |
sergeyv | ec4a4b1 | 2016-10-20 18:39:04 -0700 | [diff] [blame] | 329 | void RenderProxy::prepareToDraw(Bitmap& bitmap) { |
John Reck | 4387190 | 2016-08-01 14:39:24 -0700 | [diff] [blame] | 330 | // If we haven't spun up a hardware accelerated window yet, there's no |
| 331 | // point in precaching these bitmaps as it can't impact jank. |
| 332 | // We also don't know if we even will spin up a hardware-accelerated |
| 333 | // window or not. |
| 334 | if (!RenderThread::hasInstance()) return; |
| 335 | RenderThread* renderThread = &RenderThread::getInstance(); |
sergeyv | ec4a4b1 | 2016-10-20 18:39:04 -0700 | [diff] [blame] | 336 | bitmap.ref(); |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 337 | auto task = [renderThread, &bitmap]() { |
| 338 | CanvasContext::prepareToDraw(*renderThread, &bitmap); |
| 339 | bitmap.unref(); |
| 340 | }; |
John Reck | 4387190 | 2016-08-01 14:39:24 -0700 | [diff] [blame] | 341 | nsecs_t lastVsync = renderThread->timeLord().latestVsync(); |
| 342 | nsecs_t estimatedNextVsync = lastVsync + renderThread->timeLord().frameIntervalNanos(); |
| 343 | nsecs_t timeToNextVsync = estimatedNextVsync - systemTime(CLOCK_MONOTONIC); |
| 344 | // We expect the UI thread to take 4ms and for RT to be active from VSYNC+4ms to |
| 345 | // VSYNC+12ms or so, so aim for the gap during which RT is expected to |
| 346 | // be idle |
| 347 | // TODO: Make this concept a first-class supported thing? RT could use |
| 348 | // knowledge of pending draws to better schedule this task |
| 349 | if (timeToNextVsync > -6_ms && timeToNextVsync < 1_ms) { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 350 | renderThread->queue().postAt(estimatedNextVsync + 8_ms, task); |
John Reck | 4387190 | 2016-08-01 14:39:24 -0700 | [diff] [blame] | 351 | } else { |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 352 | renderThread->queue().post(task); |
John Reck | 4387190 | 2016-08-01 14:39:24 -0700 | [diff] [blame] | 353 | } |
| 354 | } |
| 355 | |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 356 | int RenderProxy::copyHWBitmapInto(Bitmap* hwBitmap, SkBitmap* bitmap) { |
John Reck | fbeac3c | 2019-03-29 11:24:56 -0700 | [diff] [blame] | 357 | ATRACE_NAME("HardwareBitmap readback"); |
Stan Iliev | 6983bc4 | 2017-02-02 14:11:53 -0500 | [diff] [blame] | 358 | RenderThread& thread = RenderThread::getInstance(); |
John Reck | 1072fff | 2018-04-12 15:20:09 -0700 | [diff] [blame] | 359 | if (gettid() == thread.getTid()) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 360 | // TODO: fix everything that hits this. We should never be triggering a readback ourselves. |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 361 | return (int)thread.readback().copyHWBitmapInto(hwBitmap, bitmap); |
Stan Iliev | 6983bc4 | 2017-02-02 14:11:53 -0500 | [diff] [blame] | 362 | } else { |
John Reck | 5cca8f2 | 2018-12-10 17:06:22 -0800 | [diff] [blame] | 363 | return thread.queue().runSync( |
| 364 | [&]() -> int { return (int)thread.readback().copyHWBitmapInto(hwBitmap, bitmap); }); |
Stan Iliev | 6983bc4 | 2017-02-02 14:11:53 -0500 | [diff] [blame] | 365 | } |
sergeyv | 59eecb52 | 2016-11-17 17:54:57 -0800 | [diff] [blame] | 366 | } |
| 367 | |
John Reck | a896306 | 2017-06-14 10:47:50 -0700 | [diff] [blame] | 368 | void RenderProxy::disableVsync() { |
| 369 | Properties::disableVsync = true; |
| 370 | } |
| 371 | |
Stan Iliev | 3310fb1 | 2017-03-23 16:56:51 -0400 | [diff] [blame] | 372 | void RenderProxy::repackVectorDrawableAtlas() { |
| 373 | RenderThread& thread = RenderThread::getInstance(); |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 374 | thread.queue().post([&thread]() { |
Stan Iliev | 6c4b6e8 | 2018-03-01 15:51:17 -0500 | [diff] [blame] | 375 | // The context may be null if trimMemory executed, but then the atlas was deleted too. |
| 376 | if (thread.getGrContext() != nullptr) { |
| 377 | thread.cacheManager().acquireVectorDrawableAtlas()->repackIfNeeded( |
| 378 | thread.getGrContext()); |
| 379 | } |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 380 | }); |
Stan Iliev | 6b894d7 | 2017-08-23 12:41:41 -0400 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | void RenderProxy::releaseVDAtlasEntries() { |
| 384 | RenderThread& thread = RenderThread::getInstance(); |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 385 | thread.queue().post([&thread]() { |
Stan Iliev | 6c4b6e8 | 2018-03-01 15:51:17 -0500 | [diff] [blame] | 386 | // The context may be null if trimMemory executed, but then the atlas was deleted too. |
| 387 | if (thread.getGrContext() != nullptr) { |
| 388 | thread.cacheManager().acquireVectorDrawableAtlas()->delayedReleaseEntries(); |
| 389 | } |
John Reck | f8441e6 | 2017-10-23 13:10:41 -0700 | [diff] [blame] | 390 | }); |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 391 | } |
| 392 | |
Stan Iliev | 898123b | 2019-02-14 14:57:44 -0500 | [diff] [blame] | 393 | void RenderProxy::preload() { |
| 394 | // Create RenderThread object and start the thread. Then preload Vulkan/EGL driver. |
| 395 | auto& thread = RenderThread::getInstance(); |
| 396 | thread.queue().post([&thread]() { |
| 397 | thread.preload(); |
| 398 | }); |
| 399 | } |
| 400 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 401 | } /* namespace renderthread */ |
| 402 | } /* namespace uirenderer */ |
| 403 | } /* namespace android */ |