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 | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 34 | class DisplayList; |
| 35 | class OpenGLRenderer; |
| 36 | class Rect; |
| 37 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 38 | namespace renderthread { |
| 39 | |
| 40 | class GlobalContext; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 41 | class CanvasContext; |
| 42 | class RenderThread; |
| 43 | |
| 44 | class InvokeFunctorsTask : public RenderTask { |
| 45 | public: |
| 46 | InvokeFunctorsTask(CanvasContext* context) |
| 47 | : mContext(context) {} |
| 48 | |
| 49 | virtual void run(); |
| 50 | |
| 51 | private: |
| 52 | CanvasContext* mContext; |
| 53 | }; |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 54 | |
| 55 | // This per-renderer class manages the bridge between the global EGL context |
| 56 | // and the render surface. |
| 57 | class CanvasContext { |
| 58 | public: |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 59 | CanvasContext(bool translucent); |
| 60 | ~CanvasContext(); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 61 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 62 | bool initialize(EGLNativeWindowType window); |
| 63 | void updateSurface(EGLNativeWindowType window); |
| 64 | void setup(int width, int height); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame^] | 65 | void processLayerUpdates(const Vector<DeferredLayerUpdater*>* layerUpdaters); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 66 | void drawDisplayList(DisplayList* displayList, Rect* dirty); |
| 67 | void destroyCanvas(); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 68 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame^] | 69 | bool copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap); |
| 70 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 71 | void attachFunctor(Functor* functor); |
| 72 | void detachFunctor(Functor* functor); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 73 | |
John Reck | fc53ef27 | 2014-02-11 10:40:25 -0800 | [diff] [blame] | 74 | void runWithGlContext(RenderTask* task); |
| 75 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 76 | private: |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 77 | void setSurface(EGLNativeWindowType window); |
| 78 | void swapBuffers(); |
| 79 | void makeCurrent(); |
| 80 | |
| 81 | friend class InvokeFunctorsTask; |
| 82 | void invokeFunctors(); |
| 83 | void handleFunctorStatus(int status, const Rect& redrawClip); |
| 84 | void removeFunctorsTask(); |
| 85 | void queueFunctorsTask(int delayMs = FUNCTOR_PROCESS_DELAY); |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 86 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame^] | 87 | void requireGlContext(); |
| 88 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 89 | GlobalContext* mGlobalContext; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 90 | RenderThread& mRenderThread; |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 91 | EGLSurface mEglSurface; |
| 92 | bool mDirtyRegionsEnabled; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 93 | |
| 94 | bool mOpaque; |
| 95 | OpenGLRenderer* mCanvas; |
| 96 | bool mHaveNewSurface; |
| 97 | |
| 98 | bool mInvokeFunctorsPending; |
| 99 | InvokeFunctorsTask mInvokeFunctorsTask; |
| 100 | |
John Reck | 23b797a | 2014-01-03 18:08:34 -0800 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | } /* namespace renderthread */ |
| 104 | } /* namespace uirenderer */ |
| 105 | } /* namespace android */ |
| 106 | #endif /* CANVASCONTEXT_H_ */ |