John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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 | */ |
Chris Craik | 5e00c7c | 2016-07-06 16:10:09 -0700 | [diff] [blame] | 16 | |
| 17 | #pragma once |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 18 | |
John Reck | 1423e13 | 2018-09-21 14:30:19 -0700 | [diff] [blame] | 19 | #include "Properties.h" |
John Reck | bb3a358 | 2018-09-26 11:21:08 -0700 | [diff] [blame] | 20 | #include "utils/Macros.h" |
John Reck | c25e506 | 2014-06-18 14:21:29 -0700 | [diff] [blame] | 21 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 22 | #include <utils/Timers.h> |
Leon Scroggins III | 6c5864c | 2019-04-03 15:09:25 -0400 | [diff] [blame] | 23 | #include "SkSize.h" |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 24 | |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 25 | #include <string> |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 26 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 27 | namespace android { |
| 28 | namespace uirenderer { |
| 29 | |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 30 | namespace renderthread { |
| 31 | class CanvasContext; |
| 32 | } |
| 33 | |
Tom Hudson | 2dc236b | 2014-10-15 15:46:42 -0400 | [diff] [blame] | 34 | class DamageAccumulator; |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 35 | class LayerUpdateQueue; |
John Reck | 44b49f0 | 2016-03-25 14:29:48 -0700 | [diff] [blame] | 36 | class RenderNode; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 37 | class RenderState; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 38 | |
John Reck | c25e506 | 2014-06-18 14:21:29 -0700 | [diff] [blame] | 39 | class ErrorHandler { |
| 40 | public: |
| 41 | virtual void onError(const std::string& message) = 0; |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 42 | |
John Reck | bb3a358 | 2018-09-26 11:21:08 -0700 | [diff] [blame] | 43 | virtual ~ErrorHandler() = default; |
John Reck | c25e506 | 2014-06-18 14:21:29 -0700 | [diff] [blame] | 44 | }; |
| 45 | |
John Reck | 44b49f0 | 2016-03-25 14:29:48 -0700 | [diff] [blame] | 46 | class TreeObserver { |
| 47 | public: |
| 48 | // Called when a RenderNode's parent count hits 0. |
| 49 | // Due to the unordered nature of tree pushes, once prepareTree |
| 50 | // is finished it is possible that the node was "resurrected" and has |
| 51 | // a non-zero parent count. |
John Reck | 2de950d | 2017-01-25 10:58:30 -0800 | [diff] [blame] | 52 | virtual void onMaybeRemovedFromTree(RenderNode* node) = 0; |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 53 | |
John Reck | 44b49f0 | 2016-03-25 14:29:48 -0700 | [diff] [blame] | 54 | protected: |
John Reck | bb3a358 | 2018-09-26 11:21:08 -0700 | [diff] [blame] | 55 | virtual ~TreeObserver() = default; |
John Reck | 44b49f0 | 2016-03-25 14:29:48 -0700 | [diff] [blame] | 56 | }; |
| 57 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 58 | // This would be a struct, but we want to PREVENT_COPY_AND_ASSIGN |
| 59 | class TreeInfo { |
| 60 | PREVENT_COPY_AND_ASSIGN(TreeInfo); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 61 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 62 | public: |
| 63 | enum TraversalMode { |
| 64 | // The full monty - sync, push, run animators, etc... Used by DrawFrameTask |
| 65 | // May only be used if both the UI thread and RT thread are blocked on the |
| 66 | // prepare |
| 67 | MODE_FULL, |
| 68 | // Run only what can be done safely on RT thread. Currently this only means |
| 69 | // animators, but potentially things like SurfaceTexture updates |
| 70 | // could be handled by this as well if there are no listeners |
| 71 | MODE_RT_ONLY, |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
John Reck | bb3a358 | 2018-09-26 11:21:08 -0700 | [diff] [blame] | 74 | TreeInfo(TraversalMode mode, renderthread::CanvasContext& canvasContext); |
John Reck | 68bfe0a | 2014-06-24 15:34:58 -0700 | [diff] [blame] | 75 | |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 76 | TraversalMode mode; |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 77 | // TODO: Remove this? Currently this is used to signal to stop preparing |
| 78 | // textures if we run out of cache space. |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 79 | bool prepareTextures; |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 80 | renderthread::CanvasContext& canvasContext; |
John Reck | 9eb9f6f | 2014-08-21 11:23:05 -0700 | [diff] [blame] | 81 | // TODO: buildLayer uses this to suppress running any animations, but this |
| 82 | // should probably be refactored somehow. The reason this is done is |
| 83 | // because buildLayer is not setup for injecting the animationHook, as well |
| 84 | // as this being otherwise wasted work as all the animators will be |
| 85 | // re-evaluated when the frame is actually drawn |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 86 | bool runAnimations = true; |
Chris Craik | 69e5adf | 2014-08-14 13:34:01 -0700 | [diff] [blame] | 87 | |
| 88 | // Must not be null during actual usage |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 89 | DamageAccumulator* damageAccumulator = nullptr; |
John Reck | f1aa7909e | 2019-03-07 17:01:08 -0800 | [diff] [blame] | 90 | int64_t damageGenerationId = 0; |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 91 | |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 92 | LayerUpdateQueue* layerUpdateQueue = nullptr; |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 93 | ErrorHandler* errorHandler = nullptr; |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 94 | |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 95 | bool updateWindowPositions = false; |
| 96 | |
John Reck | bb3a358 | 2018-09-26 11:21:08 -0700 | [diff] [blame] | 97 | int disableForceDark; |
John Reck | 1423e13 | 2018-09-21 14:30:19 -0700 | [diff] [blame] | 98 | |
Leon Scroggins III | 6c5864c | 2019-04-03 15:09:25 -0400 | [diff] [blame] | 99 | const SkISize screenSize; |
| 100 | |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 101 | struct Out { |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 102 | bool hasFunctors = false; |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 103 | // This is only updated if evaluateAnimations is true |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 104 | bool hasAnimations = false; |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 105 | // This is set to true if there is an animation that RenderThread cannot |
| 106 | // animate itself, such as if hasFunctors is true |
| 107 | // This is only set if hasAnimations is true |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 108 | bool requiresUiRedraw = false; |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 109 | // This is set to true if draw() can be called this frame |
| 110 | // false means that we must delay until the next vsync pulse as frame |
| 111 | // production is outrunning consumption |
| 112 | // NOTE that if this is false CanvasContext will set either requiresUiRedraw |
| 113 | // *OR* will post itself for the next vsync automatically, use this |
| 114 | // only to avoid calling draw() |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 115 | bool canDrawThisFrame = true; |
Leon Scroggins III | 4afdd1c | 2018-05-14 14:59:30 -0400 | [diff] [blame] | 116 | // Sentinel for animatedImageDelay meaning there is no need to post such |
| 117 | // a message. |
| 118 | static constexpr nsecs_t kNoAnimatedImageDelay = -1; |
| 119 | // This is used to post a message to redraw when it is time to draw the |
| 120 | // next frame of an AnimatedImageDrawable. |
| 121 | nsecs_t animatedImageDelay = kNoAnimatedImageDelay; |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 122 | } out; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 123 | |
Stan Iliev | db45a4b | 2016-11-08 14:18:31 -0500 | [diff] [blame] | 124 | // This flag helps to disable projection for receiver nodes that do not have any backward |
| 125 | // projected children. |
| 126 | bool hasBackwardProjectedNodes = false; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 127 | // TODO: Damage calculations |
| 128 | }; |
| 129 | |
| 130 | } /* namespace uirenderer */ |
| 131 | } /* namespace android */ |