John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 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 RENDERPROXY_H_ |
| 18 | #define RENDERPROXY_H_ |
| 19 | |
| 20 | #include "RenderTask.h" |
| 21 | |
| 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/Condition.h> |
| 26 | #include <utils/Functor.h> |
| 27 | #include <utils/Mutex.h> |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 28 | #include <utils/Timers.h> |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 29 | #include <utils/StrongPointer.h> |
| 30 | |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 31 | #include "../Caches.h" |
Andres Morales | 910beb8 | 2016-02-02 16:19:40 -0800 | [diff] [blame] | 32 | #include "../FrameMetricsObserver.h" |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 33 | #include "../IContextFactory.h" |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 34 | #include "CanvasContext.h" |
John Reck | 668f0e3 | 2014-03-26 15:10:40 -0700 | [diff] [blame] | 35 | #include "DrawFrameTask.h" |
| 36 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 37 | namespace android { |
sergeyv | 59eecb52 | 2016-11-17 17:54:57 -0800 | [diff] [blame] | 38 | class GraphicBuffer; |
| 39 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 40 | namespace uirenderer { |
| 41 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 42 | class DeferredLayerUpdater; |
John Reck | e18264b | 2014-03-12 13:56:30 -0700 | [diff] [blame] | 43 | class RenderNode; |
Chris Craik | 003cc3d | 2015-10-16 10:24:55 -0700 | [diff] [blame] | 44 | class DisplayList; |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 45 | class Layer; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 46 | class Rect; |
| 47 | |
| 48 | namespace renderthread { |
| 49 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 50 | class ErrorChannel; |
| 51 | class RenderThread; |
| 52 | class RenderProxyBridge; |
| 53 | |
John Reck | a41f244 | 2016-04-07 16:36:57 -0700 | [diff] [blame] | 54 | namespace DumpFlags { |
| 55 | enum { |
| 56 | FrameStats = 1 << 0, |
| 57 | Reset = 1 << 1, |
| 58 | JankStats = 1 << 2, |
| 59 | }; |
| 60 | }; |
| 61 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 62 | /* |
| 63 | * RenderProxy is strictly single threaded. All methods must be invoked on the owning |
| 64 | * thread. It is important to note that RenderProxy may be deleted while it has |
| 65 | * tasks post()'d as a result. Therefore any RenderTask that is post()'d must not |
| 66 | * reference RenderProxy or any of its fields. The exception here is that postAndWait() |
| 67 | * references RenderProxy fields. This is safe as RenderProxy cannot |
| 68 | * be deleted if it is blocked inside a call. |
| 69 | */ |
| 70 | class ANDROID_API RenderProxy { |
| 71 | public: |
John Reck | 119907c | 2014-08-14 09:02:01 -0700 | [diff] [blame] | 72 | ANDROID_API RenderProxy(bool translucent, RenderNode* rootNode, IContextFactory* contextFactory); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 73 | ANDROID_API virtual ~RenderProxy(); |
| 74 | |
John Reck | 1125d1f | 2014-10-23 11:02:19 -0700 | [diff] [blame] | 75 | // Won't take effect until next EGLSurface creation |
| 76 | ANDROID_API void setSwapBehavior(SwapBehavior swapBehavior); |
John Reck | e4280ba | 2014-05-05 16:39:37 -0700 | [diff] [blame] | 77 | ANDROID_API bool loadSystemProperties(); |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 78 | ANDROID_API void setName(const char* name); |
John Reck | 18f16e6 | 2014-05-02 16:46:41 -0700 | [diff] [blame] | 79 | |
John Reck | f648108 | 2016-02-02 15:18:23 -0800 | [diff] [blame] | 80 | ANDROID_API void initialize(const sp<Surface>& surface); |
| 81 | ANDROID_API void updateSurface(const sp<Surface>& surface); |
| 82 | ANDROID_API bool pauseSurface(const sp<Surface>& surface); |
John Reck | 8afcc76 | 2016-04-13 10:24:06 -0700 | [diff] [blame] | 83 | ANDROID_API void setStopped(bool stopped); |
John Reck | ab1080c | 2016-06-21 16:24:20 -0700 | [diff] [blame] | 84 | ANDROID_API void setup(float lightRadius, |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 85 | uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha); |
Alan Viverette | 50210d9 | 2015-05-14 18:05:36 -0700 | [diff] [blame] | 86 | ANDROID_API void setLightCenter(const Vector3& lightCenter); |
John Reck | 63a0667 | 2014-05-07 13:45:54 -0700 | [diff] [blame] | 87 | ANDROID_API void setOpaque(bool opaque); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 88 | ANDROID_API int64_t* frameInfo(); |
John Reck | 2de950d | 2017-01-25 10:58:30 -0800 | [diff] [blame] | 89 | ANDROID_API int syncAndDrawFrame(); |
| 90 | ANDROID_API void destroy(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 91 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 92 | ANDROID_API static void invokeFunctor(Functor* functor, bool waitForCompletion); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 93 | |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 94 | ANDROID_API DeferredLayerUpdater* createTextureLayer(); |
John Reck | 2de950d | 2017-01-25 10:58:30 -0800 | [diff] [blame] | 95 | ANDROID_API void buildLayer(RenderNode* node); |
John Reck | 3731dc2 | 2015-04-13 15:20:29 -0700 | [diff] [blame] | 96 | ANDROID_API bool copyLayerInto(DeferredLayerUpdater* layer, SkBitmap& bitmap); |
John Reck | d72e0a3 | 2014-05-29 18:56:11 -0700 | [diff] [blame] | 97 | ANDROID_API void pushLayerUpdate(DeferredLayerUpdater* layer); |
| 98 | ANDROID_API void cancelLayerUpdate(DeferredLayerUpdater* layer); |
John Reck | 918ad52 | 2014-06-27 14:45:25 -0700 | [diff] [blame] | 99 | ANDROID_API void detachSurfaceTexture(DeferredLayerUpdater* layer); |
John Reck | 19b6bcf | 2014-02-14 20:03:38 -0800 | [diff] [blame] | 100 | |
John Reck | 2de950d | 2017-01-25 10:58:30 -0800 | [diff] [blame] | 101 | ANDROID_API void destroyHardwareResources(); |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 102 | ANDROID_API static void trimMemory(int level); |
Chris Craik | 2507c34 | 2015-05-04 14:36:49 -0700 | [diff] [blame] | 103 | ANDROID_API static void overrideProperty(const char* name, const char* value); |
John Reck | e1628b7 | 2014-05-23 15:11:19 -0700 | [diff] [blame] | 104 | |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 105 | ANDROID_API void fence(); |
Thomas Buhot | c0a0e1a | 2016-01-18 10:31:58 +0100 | [diff] [blame] | 106 | ANDROID_API static void staticFence(); |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 107 | ANDROID_API void stopDrawing(); |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 108 | ANDROID_API void notifyFramePending(); |
John Reck | 28ad7b5 | 2014-04-07 16:59:25 -0700 | [diff] [blame] | 109 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 110 | ANDROID_API void dumpProfileInfo(int fd, int dumpFlags); |
John Reck | 7f2e5e3 | 2015-05-05 11:00:53 -0700 | [diff] [blame] | 111 | // Not exported, only used for testing |
| 112 | void resetProfileInfo(); |
John Reck | f148076 | 2016-07-03 18:28:25 -0700 | [diff] [blame] | 113 | uint32_t frameTimePercentile(int p); |
Chris Craik | 2ae0733 | 2015-01-21 14:22:39 -0800 | [diff] [blame] | 114 | ANDROID_API static void dumpGraphicsMemory(int fd); |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 115 | |
John Reck | df1742e | 2017-01-19 15:56:21 -0800 | [diff] [blame] | 116 | ANDROID_API static void rotateProcessStatsBuffer(); |
| 117 | ANDROID_API static void setProcessStatsBuffer(int fd); |
Tim Murray | 33eb07f | 2016-06-10 10:03:20 -0700 | [diff] [blame] | 118 | ANDROID_API int getRenderThreadTid(); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 119 | |
John Reck | e248bd1 | 2015-08-05 13:53:53 -0700 | [diff] [blame] | 120 | ANDROID_API void serializeDisplayListTree(); |
| 121 | |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 122 | ANDROID_API void addRenderNode(RenderNode* node, bool placeFront); |
| 123 | ANDROID_API void removeRenderNode(RenderNode* node); |
| 124 | ANDROID_API void drawRenderNode(RenderNode* node); |
Skuhne | b816087 | 2015-09-22 09:51:39 -0700 | [diff] [blame] | 125 | ANDROID_API void setContentDrawBounds(int left, int top, int right, int bottom); |
Skuhne | ea7a7fb | 2015-08-28 07:10:31 -0700 | [diff] [blame] | 126 | |
Andres Morales | 910beb8 | 2016-02-02 16:19:40 -0800 | [diff] [blame] | 127 | ANDROID_API void addFrameMetricsObserver(FrameMetricsObserver* observer); |
| 128 | ANDROID_API void removeFrameMetricsObserver(FrameMetricsObserver* observer); |
Andres Morales | 06f5bc7 | 2015-12-15 15:21:31 -0800 | [diff] [blame] | 129 | ANDROID_API long getDroppedFrameReportCount(); |
| 130 | |
John Reck | 9580146 | 2016-09-01 09:44:09 -0700 | [diff] [blame] | 131 | ANDROID_API static int copySurfaceInto(sp<Surface>& surface, |
| 132 | int left, int top, int right, int bottom, SkBitmap* bitmap); |
sergeyv | ec4a4b1 | 2016-10-20 18:39:04 -0700 | [diff] [blame] | 133 | ANDROID_API static void prepareToDraw(Bitmap& bitmap); |
John Reck | 10dd058 | 2016-03-31 16:36:16 -0700 | [diff] [blame] | 134 | |
sergeyv | 694d499 | 2016-10-27 10:23:13 -0700 | [diff] [blame] | 135 | static sk_sp<Bitmap> allocateHardwareBitmap(SkBitmap& bitmap); |
sergeyv | 59eecb52 | 2016-11-17 17:54:57 -0800 | [diff] [blame] | 136 | |
| 137 | static int copyGraphicBufferInto(GraphicBuffer* buffer, SkBitmap* bitmap); |
Stan Iliev | b33013f | 2017-05-05 19:41:36 -0400 | [diff] [blame] | 138 | |
| 139 | static sk_sp<SkImage> makeTextureImage(Bitmap* bitmap); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 140 | private: |
| 141 | RenderThread& mRenderThread; |
| 142 | CanvasContext* mContext; |
| 143 | |
John Reck | 668f0e3 | 2014-03-26 15:10:40 -0700 | [diff] [blame] | 144 | DrawFrameTask mDrawFrameTask; |
| 145 | |
John Reck | cba287b | 2015-11-10 12:52:44 -0800 | [diff] [blame] | 146 | Mutex mSyncMutex; |
| 147 | Condition mSyncCondition; |
| 148 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 149 | void destroyContext(); |
| 150 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 151 | void post(RenderTask* task); |
| 152 | void* postAndWait(MethodInvokeRenderTask* task); |
| 153 | |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 154 | static void* staticPostAndWait(MethodInvokeRenderTask* task); |
| 155 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 156 | // Friend class to help with bridging |
| 157 | friend class RenderProxyBridge; |
| 158 | }; |
| 159 | |
| 160 | } /* namespace renderthread */ |
| 161 | } /* namespace uirenderer */ |
| 162 | } /* namespace android */ |
| 163 | #endif /* RENDERPROXY_H_ */ |