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 | */ |
| 16 | #ifndef TREEINFO_H |
| 17 | #define TREEINFO_H |
| 18 | |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 19 | #include "utils/Macros.h" |
John Reck | c25e506 | 2014-06-18 14:21:29 -0700 | [diff] [blame] | 20 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 21 | #include <utils/Timers.h> |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 22 | |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 23 | #include <string> |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 24 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 25 | namespace android { |
| 26 | namespace uirenderer { |
| 27 | |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 28 | namespace renderthread { |
| 29 | class CanvasContext; |
| 30 | } |
| 31 | |
Tom Hudson | 2dc236b | 2014-10-15 15:46:42 -0400 | [diff] [blame] | 32 | class DamageAccumulator; |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 33 | class LayerUpdateQueue; |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 34 | class OpenGLRenderer; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 35 | class RenderState; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 36 | |
John Reck | c25e506 | 2014-06-18 14:21:29 -0700 | [diff] [blame] | 37 | class ErrorHandler { |
| 38 | public: |
| 39 | virtual void onError(const std::string& message) = 0; |
| 40 | protected: |
| 41 | ~ErrorHandler() {} |
| 42 | }; |
| 43 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 44 | // This would be a struct, but we want to PREVENT_COPY_AND_ASSIGN |
| 45 | class TreeInfo { |
| 46 | PREVENT_COPY_AND_ASSIGN(TreeInfo); |
| 47 | public: |
| 48 | enum TraversalMode { |
| 49 | // The full monty - sync, push, run animators, etc... Used by DrawFrameTask |
| 50 | // May only be used if both the UI thread and RT thread are blocked on the |
| 51 | // prepare |
| 52 | MODE_FULL, |
| 53 | // Run only what can be done safely on RT thread. Currently this only means |
| 54 | // animators, but potentially things like SurfaceTexture updates |
| 55 | // could be handled by this as well if there are no listeners |
| 56 | MODE_RT_ONLY, |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 57 | }; |
| 58 | |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 59 | TreeInfo(TraversalMode mode, renderthread::CanvasContext& canvasContext) |
| 60 | : mode(mode) |
| 61 | , prepareTextures(mode == MODE_FULL) |
| 62 | , canvasContext(canvasContext) |
John Reck | 68bfe0a | 2014-06-24 15:34:58 -0700 | [diff] [blame] | 63 | {} |
| 64 | |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 65 | TraversalMode mode; |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 66 | // TODO: Remove this? Currently this is used to signal to stop preparing |
| 67 | // textures if we run out of cache space. |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 68 | bool prepareTextures; |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 69 | renderthread::CanvasContext& canvasContext; |
John Reck | 9eb9f6f | 2014-08-21 11:23:05 -0700 | [diff] [blame] | 70 | // TODO: buildLayer uses this to suppress running any animations, but this |
| 71 | // should probably be refactored somehow. The reason this is done is |
| 72 | // because buildLayer is not setup for injecting the animationHook, as well |
| 73 | // as this being otherwise wasted work as all the animators will be |
| 74 | // re-evaluated when the frame is actually drawn |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 75 | bool runAnimations = true; |
Chris Craik | 69e5adf | 2014-08-14 13:34:01 -0700 | [diff] [blame] | 76 | |
| 77 | // Must not be null during actual usage |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 78 | DamageAccumulator* damageAccumulator = nullptr; |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 79 | |
| 80 | #if HWUI_NEW_OPS |
| 81 | LayerUpdateQueue* layerUpdateQueue = nullptr; |
| 82 | #else |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 83 | // The renderer that will be drawing the next frame. Use this to push any |
| 84 | // layer updates or similar. May be NULL. |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 85 | OpenGLRenderer* renderer = nullptr; |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 86 | #endif |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 87 | ErrorHandler* errorHandler = nullptr; |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 88 | |
| 89 | struct Out { |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 90 | bool hasFunctors = false; |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 91 | // This is only updated if evaluateAnimations is true |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 92 | bool hasAnimations = false; |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 93 | // This is set to true if there is an animation that RenderThread cannot |
| 94 | // animate itself, such as if hasFunctors is true |
| 95 | // This is only set if hasAnimations is true |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 96 | bool requiresUiRedraw = false; |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 97 | // This is set to true if draw() can be called this frame |
| 98 | // false means that we must delay until the next vsync pulse as frame |
| 99 | // production is outrunning consumption |
| 100 | // NOTE that if this is false CanvasContext will set either requiresUiRedraw |
| 101 | // *OR* will post itself for the next vsync automatically, use this |
| 102 | // only to avoid calling draw() |
Chris Craik | e2e53a7 | 2015-10-28 15:55:40 -0700 | [diff] [blame] | 103 | bool canDrawThisFrame = true; |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 104 | } out; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 105 | |
| 106 | // TODO: Damage calculations |
| 107 | }; |
| 108 | |
| 109 | } /* namespace uirenderer */ |
| 110 | } /* namespace android */ |
| 111 | |
| 112 | #endif /* TREEINFO_H */ |