John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [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 | |
| 17 | #ifndef CANVASCONTEXT_H_ |
| 18 | #define CANVASCONTEXT_H_ |
| 19 | |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 20 | #include <set> |
| 21 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 22 | #include <cutils/compiler.h> |
| 23 | #include <EGL/egl.h> |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 24 | #include <SkBitmap.h> |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 25 | #include <utils/Functor.h> |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 26 | #include <utils/Vector.h> |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 27 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 28 | #include "../DamageAccumulator.h" |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 29 | #include "../DrawProfiler.h" |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 30 | #include "../IContextFactory.h" |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 31 | #include "../RenderNode.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 32 | #include "RenderTask.h" |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 33 | #include "RenderThread.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 34 | |
| 35 | #define FUNCTOR_PROCESS_DELAY 4 |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 36 | |
| 37 | namespace android { |
| 38 | namespace uirenderer { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 39 | |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 40 | class AnimationContext; |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 41 | class DeferredLayerUpdater; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 42 | class OpenGLRenderer; |
| 43 | class Rect; |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 44 | class Layer; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 45 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 46 | namespace renderthread { |
| 47 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 48 | class EglManager; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 49 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 50 | // This per-renderer class manages the bridge between the global EGL context |
| 51 | // and the render surface. |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 52 | // TODO: Rename to Renderer or some other per-window, top-level manager |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 53 | class CanvasContext : public IFrameCallback { |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 54 | public: |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 55 | CanvasContext(RenderThread& thread, bool translucent, RenderNode* rootRenderNode, |
| 56 | IContextFactory* contextFactory); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 57 | virtual ~CanvasContext(); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 58 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 59 | bool initialize(ANativeWindow* window); |
| 60 | void updateSurface(ANativeWindow* window); |
| 61 | void pauseSurface(ANativeWindow* window); |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 62 | void setup(int width, int height, const Vector3& lightCenter, float lightRadius, |
| 63 | uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha); |
John Reck | 63a0667 | 2014-05-07 13:45:54 -0700 | [diff] [blame] | 64 | void setOpaque(bool opaque); |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 65 | void makeCurrent(); |
John Reck | 68bfe0a | 2014-06-24 15:34:58 -0700 | [diff] [blame] | 66 | void processLayerUpdate(DeferredLayerUpdater* layerUpdater); |
John Reck | d72e0a3 | 2014-05-29 18:56:11 -0700 | [diff] [blame] | 67 | void prepareTree(TreeInfo& info); |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 68 | void draw(); |
John Reck | 17035b0 | 2014-09-03 07:39:53 -0700 | [diff] [blame^] | 69 | void destroy(); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 70 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 71 | // IFrameCallback, Chroreographer-driven frame callback entry point |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 72 | virtual void doFrame(); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 73 | |
John Reck | 3e82495 | 2014-08-20 10:08:39 -0700 | [diff] [blame] | 74 | void buildLayer(RenderNode* node); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 75 | bool copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap); |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 76 | void markLayerInUse(RenderNode* node); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 77 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 78 | void destroyHardwareResources(); |
| 79 | static void trimMemory(RenderThread& thread, int level); |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 80 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 81 | static void invokeFunctor(RenderThread& thread, Functor* functor); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 82 | |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 83 | void runWithGlContext(RenderTask* task); |
| 84 | |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 85 | Layer* createRenderLayer(int width, int height); |
| 86 | Layer* createTextureLayer(); |
| 87 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 88 | ANDROID_API static void setTextureAtlas(RenderThread& thread, |
| 89 | const sp<GraphicBuffer>& buffer, int64_t* map, size_t mapSize); |
John Reck | 66f0be6 | 2014-05-13 13:39:31 -0700 | [diff] [blame] | 90 | |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 91 | void stopDrawing(); |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 92 | void notifyFramePending(); |
| 93 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 94 | DrawProfiler& profiler() { return mProfiler; } |
| 95 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 96 | private: |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 97 | friend class RegisterFrameCallbackTask; |
| 98 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 99 | void setSurface(ANativeWindow* window); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 100 | void swapBuffers(); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 101 | void requireSurface(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 102 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 103 | void requireGlContext(); |
| 104 | |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 105 | void freePrefetechedLayers(); |
| 106 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 107 | RenderThread& mRenderThread; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 108 | EglManager& mEglManager; |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 109 | sp<ANativeWindow> mNativeWindow; |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 110 | EGLSurface mEglSurface; |
| 111 | bool mDirtyRegionsEnabled; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 112 | |
| 113 | bool mOpaque; |
| 114 | OpenGLRenderer* mCanvas; |
| 115 | bool mHaveNewSurface; |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 116 | DamageAccumulator mDamageAccumulator; |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 117 | AnimationContext* mAnimationContext; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 118 | |
| 119 | const sp<RenderNode> mRootRenderNode; |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 120 | |
| 121 | DrawProfiler mProfiler; |
John Reck | 998a6d8 | 2014-08-28 15:35:53 -0700 | [diff] [blame] | 122 | |
| 123 | std::set<RenderNode*> mPrefetechedLayers; |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 124 | }; |
| 125 | |
| 126 | } /* namespace renderthread */ |
| 127 | } /* namespace uirenderer */ |
| 128 | } /* namespace android */ |
| 129 | #endif /* CANVASCONTEXT_H_ */ |