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