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 | |
| 20 | #include <cutils/compiler.h> |
| 21 | #include <EGL/egl.h> |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 22 | #include <SkBitmap.h> |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 23 | #include <utils/Functor.h> |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 24 | #include <utils/Vector.h> |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 25 | |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 26 | #include "../RenderNode.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 27 | #include "RenderTask.h" |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 28 | #include "RenderThread.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 29 | |
| 30 | #define FUNCTOR_PROCESS_DELAY 4 |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 31 | |
| 32 | namespace android { |
| 33 | namespace uirenderer { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 34 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 35 | class DeferredLayerUpdater; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 36 | class OpenGLRenderer; |
| 37 | class Rect; |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 38 | class Layer; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 39 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 40 | namespace renderthread { |
| 41 | |
| 42 | class GlobalContext; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 43 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 44 | // This per-renderer class manages the bridge between the global EGL context |
| 45 | // and the render surface. |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 46 | class CanvasContext : public IFrameCallback { |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 47 | public: |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 48 | CanvasContext(bool translucent, RenderNode* rootRenderNode); |
| 49 | virtual ~CanvasContext(); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 50 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 51 | bool initialize(EGLNativeWindowType window); |
| 52 | void updateSurface(EGLNativeWindowType window); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 53 | void pauseSurface(EGLNativeWindowType window); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 54 | void setup(int width, int height); |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 55 | void makeCurrent(); |
| 56 | void processLayerUpdates(const Vector<DeferredLayerUpdater*>* layerUpdaters, TreeInfo& info); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 57 | void prepareTree(TreeInfo& info); |
| 58 | void draw(Rect* dirty); |
John Reck | fae904d | 2014-04-14 11:01:57 -0700 | [diff] [blame] | 59 | void destroyCanvasAndSurface(); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 60 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 61 | // IFrameCallback, Chroreographer-driven frame callback entry point |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame^] | 62 | virtual void doFrame(); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 63 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 64 | bool copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap); |
| 65 | |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 66 | void invokeFunctor(Functor* functor); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 67 | |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 68 | void runWithGlContext(RenderTask* task); |
| 69 | |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 70 | Layer* createRenderLayer(int width, int height); |
| 71 | Layer* createTextureLayer(); |
| 72 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 73 | private: |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 74 | void setSurface(EGLNativeWindowType window); |
| 75 | void swapBuffers(); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame] | 76 | void requireSurface(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 77 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 78 | void requireGlContext(); |
| 79 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 80 | GlobalContext* mGlobalContext; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 81 | RenderThread& mRenderThread; |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 82 | EGLSurface mEglSurface; |
| 83 | bool mDirtyRegionsEnabled; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 84 | |
| 85 | bool mOpaque; |
| 86 | OpenGLRenderer* mCanvas; |
| 87 | bool mHaveNewSurface; |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 88 | |
| 89 | const sp<RenderNode> mRootRenderNode; |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | } /* namespace renderthread */ |
| 93 | } /* namespace uirenderer */ |
| 94 | } /* namespace android */ |
| 95 | #endif /* CANVASCONTEXT_H_ */ |