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 | |
| 26 | #include "RenderTask.h" |
| 27 | |
| 28 | #define FUNCTOR_PROCESS_DELAY 4 |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 29 | |
| 30 | namespace android { |
| 31 | namespace uirenderer { |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 32 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 33 | class DeferredLayerUpdater; |
John Reck | e18264b | 2014-03-12 13:56:30 -0700 | [diff] [blame] | 34 | class RenderNode; |
John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 35 | class DisplayListData; |
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 | class CanvasContext; |
| 44 | class RenderThread; |
| 45 | |
| 46 | class InvokeFunctorsTask : public RenderTask { |
| 47 | public: |
| 48 | InvokeFunctorsTask(CanvasContext* context) |
| 49 | : mContext(context) {} |
| 50 | |
| 51 | virtual void run(); |
| 52 | |
| 53 | private: |
| 54 | CanvasContext* mContext; |
| 55 | }; |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 56 | |
| 57 | // This per-renderer class manages the bridge between the global EGL context |
| 58 | // and the render surface. |
| 59 | class CanvasContext { |
| 60 | public: |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 61 | CanvasContext(bool translucent); |
| 62 | ~CanvasContext(); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 63 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 64 | bool initialize(EGLNativeWindowType window); |
| 65 | void updateSurface(EGLNativeWindowType window); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame^] | 66 | void pauseSurface(EGLNativeWindowType window); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 67 | void setup(int width, int height); |
John Reck | e18264b | 2014-03-12 13:56:30 -0700 | [diff] [blame] | 68 | void setDisplayListData(RenderNode* displayList, DisplayListData* newData); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 69 | void processLayerUpdates(const Vector<DeferredLayerUpdater*>* layerUpdaters); |
John Reck | e18264b | 2014-03-12 13:56:30 -0700 | [diff] [blame] | 70 | void drawDisplayList(RenderNode* displayList, Rect* dirty); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 71 | void destroyCanvas(); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 72 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 73 | bool copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap); |
| 74 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 75 | void attachFunctor(Functor* functor); |
| 76 | void detachFunctor(Functor* functor); |
John Reck | 0d1f634 | 2014-03-28 20:30:27 -0700 | [diff] [blame] | 77 | void invokeFunctor(Functor* functor); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 78 | |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 79 | void runWithGlContext(RenderTask* task); |
| 80 | |
John Reck | 1949e79 | 2014-04-08 15:18:56 -0700 | [diff] [blame] | 81 | Layer* createRenderLayer(int width, int height); |
| 82 | Layer* createTextureLayer(); |
| 83 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 84 | private: |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 85 | void setSurface(EGLNativeWindowType window); |
| 86 | void swapBuffers(); |
John Reck | f7d9c1d | 2014-04-09 10:01:03 -0700 | [diff] [blame^] | 87 | void requireSurface(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 88 | |
| 89 | friend class InvokeFunctorsTask; |
| 90 | void invokeFunctors(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 91 | void removeFunctorsTask(); |
| 92 | void queueFunctorsTask(int delayMs = FUNCTOR_PROCESS_DELAY); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 93 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 94 | void requireGlContext(); |
| 95 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 96 | GlobalContext* mGlobalContext; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 97 | RenderThread& mRenderThread; |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 98 | EGLSurface mEglSurface; |
| 99 | bool mDirtyRegionsEnabled; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 100 | |
| 101 | bool mOpaque; |
| 102 | OpenGLRenderer* mCanvas; |
| 103 | bool mHaveNewSurface; |
| 104 | |
| 105 | bool mInvokeFunctorsPending; |
| 106 | InvokeFunctorsTask mInvokeFunctorsTask; |
| 107 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | } /* namespace renderthread */ |
| 111 | } /* namespace uirenderer */ |
| 112 | } /* namespace android */ |
| 113 | #endif /* CANVASCONTEXT_H_ */ |