blob: 2a98bd88a63c34765554d6d8c0a449b4103f5f32 [file] [log] [blame]
Mathias Agopian3f844832013-08-07 21:24:32 -07001/*
2 * Copyright 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
Peiyong Lin7e219eb2018-12-03 05:40:42 -080017#ifndef SF_GLESRENDERENGINE_H_
18#define SF_GLESRENDERENGINE_H_
Mathias Agopian3f844832013-08-07 21:24:32 -070019
Alec Mouri554d06e2018-12-20 00:15:33 -080020#include <condition_variable>
Alec Mourida4cf3b2019-02-12 15:33:01 -080021#include <deque>
Alec Mouri554d06e2018-12-20 00:15:33 -080022#include <mutex>
23#include <queue>
24#include <thread>
Alec Mourida4cf3b2019-02-12 15:33:01 -080025#include <unordered_map>
Mathias Agopian3f844832013-08-07 21:24:32 -070026
Peiyong Linf11f39b2018-09-05 14:37:41 -070027#include <EGL/egl.h>
28#include <EGL/eglext.h>
Mathias Agopian3f844832013-08-07 21:24:32 -070029#include <GLES2/gl2.h>
Alec Mouri16a99402019-07-29 16:37:30 -070030#include <android-base/thread_annotations.h>
Peiyong Lincbc184f2018-08-22 13:24:10 -070031#include <renderengine/RenderEngine.h>
Peiyong Lin833074a2018-08-28 11:53:54 -070032#include <renderengine/private/Description.h>
Alec Mouri16a99402019-07-29 16:37:30 -070033#include <sys/types.h>
Vishnu Nairf19544f2020-02-03 11:23:26 -080034#include "GLShadowTexture.h"
Alec Mouri16a99402019-07-29 16:37:30 -070035#include "ImageManager.h"
Mathias Agopian3f844832013-08-07 21:24:32 -070036
Peiyong Linf11f39b2018-09-05 14:37:41 -070037#define EGL_NO_CONFIG ((EGLConfig)0)
38
Mathias Agopian3f844832013-08-07 21:24:32 -070039namespace android {
Mathias Agopian3f844832013-08-07 21:24:32 -070040
Peiyong Lin833074a2018-08-28 11:53:54 -070041namespace renderengine {
42
Mathias Agopian3f844832013-08-07 21:24:32 -070043class Mesh;
Mathias Agopian49457ac2013-08-14 18:20:17 -070044class Texture;
Mathias Agopian3f844832013-08-07 21:24:32 -070045
Peiyong Lin833074a2018-08-28 11:53:54 -070046namespace gl {
Lloyd Pique144e1162017-12-20 16:44:52 -080047
Peiyong Linf1bada92018-08-29 09:39:31 -070048class GLImage;
Lucas Dupin19c8f0e2019-11-25 17:55:44 -080049class BlurFilter;
Peiyong Linf1bada92018-08-29 09:39:31 -070050
Peiyong Lin7e219eb2018-12-03 05:40:42 -080051class GLESRenderEngine : public impl::RenderEngine {
Mathias Agopian3f844832013-08-07 21:24:32 -070052public:
Peiyong Lin4137a1d2019-10-09 10:39:09 -070053 static std::unique_ptr<GLESRenderEngine> create(const RenderEngineCreationArgs& args);
Peiyong Linf11f39b2018-09-05 14:37:41 -070054
Peiyong Lin4137a1d2019-10-09 10:39:09 -070055 GLESRenderEngine(const RenderEngineCreationArgs& args, EGLDisplay display, EGLConfig config,
Peiyong Lind8460c82020-07-28 16:04:22 -070056 EGLContext ctxt, EGLSurface stub, EGLContext protectedContext,
57 EGLSurface protectedStub);
Alec Mourid43ccab2019-03-13 12:23:45 -070058 ~GLESRenderEngine() override EXCLUDES(mRenderingMutex);
Mathias Agopian3f844832013-08-07 21:24:32 -070059
Peiyong Linf1bada92018-08-29 09:39:31 -070060 void primeCache() const override;
Peiyong Lin60bedb52018-09-05 10:47:31 -070061 void genTextures(size_t count, uint32_t* names) override;
62 void deleteTextures(size_t count, uint32_t const* names) override;
Alec Mourid7b3a8b2019-03-21 11:44:18 -070063 status_t bindExternalTextureBuffer(uint32_t texName, const sp<GraphicBuffer>& buffer,
64 const sp<Fence>& fence) EXCLUDES(mRenderingMutex);
Alec Mouri16a99402019-07-29 16:37:30 -070065 void cacheExternalTextureBuffer(const sp<GraphicBuffer>& buffer) EXCLUDES(mRenderingMutex);
Alec Mourif0497272019-03-11 15:53:11 -070066 void unbindExternalTextureBuffer(uint64_t bufferId) EXCLUDES(mRenderingMutex);
Peiyong Linf1bada92018-08-29 09:39:31 -070067
Peiyong Linfb530cf2018-12-15 05:07:38 +000068 bool isProtected() const override { return mInProtectedContext; }
69 bool supportsProtectedContent() const override;
70 bool useProtectedContext(bool useProtectedContext) override;
Vishnu Nair9b079a22020-01-21 14:36:08 -080071 status_t drawLayers(const DisplaySettings& display,
72 const std::vector<const LayerSettings*>& layers,
Ana Krulecfc874ae2020-02-22 15:39:32 -080073 const sp<GraphicBuffer>& buffer, const bool useFramebufferCache,
Alec Mouri3d7c5612019-07-09 13:51:37 -070074 base::unique_fd&& bufferFence, base::unique_fd* drawFence) override;
Alec Mouri368e1582020-08-13 10:14:29 -070075 bool cleanupPostRender(CleanupMode mode) override;
Alec Mouri6e57f682018-09-29 20:45:08 -070076
Peiyong Linf11f39b2018-09-05 14:37:41 -070077 EGLDisplay getEGLDisplay() const { return mEGLDisplay; }
Alec Mourida4cf3b2019-02-12 15:33:01 -080078 // Creates an output image for rendering to
Alec Mourife0d72b2019-03-21 14:05:56 -070079 EGLImageKHR createFramebufferImageIfNeeded(ANativeWindowBuffer* nativeBuffer, bool isProtected,
Alec Mourief44c2d2019-07-15 15:27:22 -070080 bool useFramebufferCache)
81 EXCLUDES(mFramebufferImageCacheMutex);
Peiyong Linf11f39b2018-09-05 14:37:41 -070082
Alec Mourid43ccab2019-03-13 12:23:45 -070083 // Test-only methods
84 // Returns true iff mImageCache contains an image keyed by bufferId
85 bool isImageCachedForTesting(uint64_t bufferId) EXCLUDES(mRenderingMutex);
Alec Mouri368e1582020-08-13 10:14:29 -070086 // Returns true iff texName was previously generated by RenderEngine and was
87 // not destroyed.
88 bool isTextureNameKnownForTesting(uint32_t texName);
89 // Returns the buffer ID of the content bound to texName, or nullopt if no
90 // such mapping exists.
91 std::optional<uint64_t> getBufferIdForTextureNameForTesting(uint32_t texName);
Alec Mourid43ccab2019-03-13 12:23:45 -070092 // Returns true iff mFramebufferImageCache contains an image keyed by bufferId
Alec Mourief44c2d2019-07-15 15:27:22 -070093 bool isFramebufferImageCachedForTesting(uint64_t bufferId)
94 EXCLUDES(mFramebufferImageCacheMutex);
Alec Mouri16a99402019-07-29 16:37:30 -070095 // These are wrappers around public methods above, but exposing Barrier
96 // objects so that tests can block.
97 std::shared_ptr<ImageManager::Barrier> cacheExternalTextureBufferForTesting(
98 const sp<GraphicBuffer>& buffer);
99 std::shared_ptr<ImageManager::Barrier> unbindExternalTextureBufferForTesting(uint64_t bufferId);
Alec Mourid43ccab2019-03-13 12:23:45 -0700100
Mathias Agopian3f844832013-08-07 21:24:32 -0700101protected:
John Reck992a2ca2020-09-03 17:20:56 -0700102 Framebuffer* getFramebufferForDrawing();
Alec Mourief44c2d2019-07-15 15:27:22 -0700103 void dump(std::string& result) override EXCLUDES(mRenderingMutex)
104 EXCLUDES(mFramebufferImageCacheMutex);
Peiyong Line5a9a7f2018-08-30 15:32:13 -0700105 size_t getMaxTextureSize() const override;
106 size_t getMaxViewportDims() const override;
107
108private:
John Reck992a2ca2020-09-03 17:20:56 -0700109 friend class BindNativeBufferAsFramebuffer;
110
Peiyong Linf11f39b2018-09-05 14:37:41 -0700111 enum GlesVersion {
112 GLES_VERSION_1_0 = 0x10000,
113 GLES_VERSION_1_1 = 0x10001,
114 GLES_VERSION_2_0 = 0x20000,
115 GLES_VERSION_3_0 = 0x30000,
116 };
117
Alec Mouri8002fca2019-06-28 15:24:13 -0700118 static EGLConfig chooseEglConfig(EGLDisplay display, int format, bool logConfig);
Peiyong Linf11f39b2018-09-05 14:37:41 -0700119 static GlesVersion parseGlesVersion(const char* str);
Peiyong Lina5e9f1b2018-11-27 22:49:37 -0800120 static EGLContext createEglContext(EGLDisplay display, EGLConfig config,
Peiyong Linfb530cf2018-12-15 05:07:38 +0000121 EGLContext shareContext, bool useContextPriority,
122 Protection protection);
Peiyong Lind8460c82020-07-28 16:04:22 -0700123 static EGLSurface createStubEglPbufferSurface(EGLDisplay display, EGLConfig config,
124 int hwcFormat, Protection protection);
Alec Mouri8002fca2019-06-28 15:24:13 -0700125 std::unique_ptr<Framebuffer> createFramebuffer();
126 std::unique_ptr<Image> createImage();
127 void checkErrors() const;
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800128 void checkErrors(const char* tag) const;
Peiyong Lin1c097612019-03-22 16:21:46 -0700129 void setScissor(const Rect& region);
130 void disableScissor();
Alec Mouri554d06e2018-12-20 00:15:33 -0800131 bool waitSync(EGLSyncKHR sync, EGLint flags);
Alec Mouri16a99402019-07-29 16:37:30 -0700132 status_t cacheExternalTextureBufferInternal(const sp<GraphicBuffer>& buffer)
133 EXCLUDES(mRenderingMutex);
134 void unbindExternalTextureBufferInternal(uint64_t bufferId) EXCLUDES(mRenderingMutex);
John Reck992a2ca2020-09-03 17:20:56 -0700135 status_t bindFrameBuffer(Framebuffer* framebuffer);
136 void unbindFrameBuffer(Framebuffer* framebuffer);
137 void bindExternalTextureImage(uint32_t texName, const Image& image);
Peiyong Linf11f39b2018-09-05 14:37:41 -0700138
Peiyong Line5a9a7f2018-08-30 15:32:13 -0700139 // A data space is considered HDR data space if it has BT2020 color space
140 // with PQ or HLG transfer function.
141 bool isHdrDataSpace(const ui::Dataspace dataSpace) const;
142 bool needsXYZTransformMatrix() const;
Alec Mouri1089aed2018-10-25 21:33:57 -0700143 // Defines the viewport, and sets the projection matrix to the projection
144 // defined by the clip.
145 void setViewportAndProjection(Rect viewport, Rect clip);
Alec Mouri539319f2018-12-19 17:56:23 -0800146 // Evicts stale images from the buffer cache.
147 void evictImages(const std::vector<LayerSettings>& layers);
Alec Mouri7c94edb2018-12-03 21:23:26 -0800148 // Computes the cropping window for the layer and sets up cropping
149 // coordinates for the mesh.
150 FloatRect setupLayerCropping(const LayerSettings& layer, Mesh& mesh);
Peiyong Line5a9a7f2018-08-30 15:32:13 -0700151
Peiyong Lin1c097612019-03-22 16:21:46 -0700152 // We do a special handling for rounded corners when it's possible to turn off blending
153 // for the majority of the layer. The rounded corners needs to turn on blending such that
154 // we can set the alpha value correctly, however, only the corners need this, and since
155 // blending is an expensive operation, we want to turn off blending when it's not necessary.
156 void handleRoundedCorners(const DisplaySettings& display, const LayerSettings& layer,
157 const Mesh& mesh);
Alec Mouri8002fca2019-06-28 15:24:13 -0700158 base::unique_fd flush();
159 bool finish();
160 bool waitFence(base::unique_fd fenceFd);
161 void clearWithColor(float red, float green, float blue, float alpha);
162 void fillRegionWithColor(const Region& region, float red, float green, float blue, float alpha);
Vishnu Nair16efdbf2019-12-10 11:55:42 -0800163 void handleShadow(const FloatRect& casterRect, float casterCornerRadius,
164 const ShadowSettings& shadowSettings);
Alec Mouri8002fca2019-06-28 15:24:13 -0700165 void setupLayerBlending(bool premultipliedAlpha, bool opaque, bool disableTexture,
166 const half4& color, float cornerRadius);
167 void setupLayerTexturing(const Texture& texture);
168 void setupFillWithColor(float r, float g, float b, float a);
169 void setColorTransform(const mat4& colorTransform);
170 void disableTexturing();
171 void disableBlending();
172 void setupCornerRadiusCropSize(float width, float height);
173
174 // HDR and color management related functions and state
175 void setSourceY410BT2020(bool enable);
176 void setSourceDataSpace(ui::Dataspace source);
177 void setOutputDataSpace(ui::Dataspace dataspace);
178 void setDisplayMaxLuminance(const float maxLuminance);
179
180 // drawing
181 void drawMesh(const Mesh& mesh);
Peiyong Lin1c097612019-03-22 16:21:46 -0700182
Peiyong Linf11f39b2018-09-05 14:37:41 -0700183 EGLDisplay mEGLDisplay;
184 EGLConfig mEGLConfig;
185 EGLContext mEGLContext;
Peiyong Lind8460c82020-07-28 16:04:22 -0700186 EGLSurface mStubSurface;
Peiyong Linfb530cf2018-12-15 05:07:38 +0000187 EGLContext mProtectedEGLContext;
Peiyong Lind8460c82020-07-28 16:04:22 -0700188 EGLSurface mProtectedStubSurface;
Peiyong Line5a9a7f2018-08-30 15:32:13 -0700189 GLint mMaxViewportDims[2];
190 GLint mMaxTextureSize;
191 GLuint mVpWidth;
192 GLuint mVpHeight;
193 Description mState;
Vishnu Nairf19544f2020-02-03 11:23:26 -0800194 GLShadowTexture mShadowTexture;
Peiyong Line5a9a7f2018-08-30 15:32:13 -0700195
Peiyong Lin70b26ce2018-09-18 19:02:39 -0700196 mat4 mSrgbToXyz;
Peiyong Lin70b26ce2018-09-18 19:02:39 -0700197 mat4 mDisplayP3ToXyz;
Valerie Haueb8e0762018-11-06 10:10:42 -0800198 mat4 mBt2020ToXyz;
Peiyong Line5a9a7f2018-08-30 15:32:13 -0700199 mat4 mXyzToSrgb;
200 mat4 mXyzToDisplayP3;
201 mat4 mXyzToBt2020;
Valerie Haueb8e0762018-11-06 10:10:42 -0800202 mat4 mSrgbToDisplayP3;
203 mat4 mSrgbToBt2020;
204 mat4 mDisplayP3ToSrgb;
205 mat4 mDisplayP3ToBt2020;
206 mat4 mBt2020ToSrgb;
207 mat4 mBt2020ToDisplayP3;
Peiyong Line5a9a7f2018-08-30 15:32:13 -0700208
Peiyong Linfb530cf2018-12-15 05:07:38 +0000209 bool mInProtectedContext = false;
Alec Mouri554d06e2018-12-20 00:15:33 -0800210 // If set to true, then enables tracing flush() and finish() to systrace.
211 bool mTraceGpuCompletion = false;
Alec Mourida4cf3b2019-02-12 15:33:01 -0800212 // Maximum size of mFramebufferImageCache. If more images would be cached, then (approximately)
213 // the last recently used buffer should be kicked out.
214 uint32_t mFramebufferImageCacheSize = 0;
215
216 // Cache of output images, keyed by corresponding GraphicBuffer ID.
Alec Mourief44c2d2019-07-15 15:27:22 -0700217 std::deque<std::pair<uint64_t, EGLImageKHR>> mFramebufferImageCache
218 GUARDED_BY(mFramebufferImageCacheMutex);
219 // The only reason why we have this mutex is so that we don't segfault when
220 // dumping info.
221 std::mutex mFramebufferImageCacheMutex;
Peiyong Linfb069302018-04-25 14:34:31 -0700222
223 // Current dataspace of layer being rendered
224 ui::Dataspace mDataSpace = ui::Dataspace::UNKNOWN;
225
226 // Current output dataspace of the render engine
227 ui::Dataspace mOutputDataSpace = ui::Dataspace::UNKNOWN;
228
Peiyong Lin13effd12018-07-24 17:01:47 -0700229 // Whether device supports color management, currently color management
230 // supports sRGB, DisplayP3 color spaces.
231 const bool mUseColorManagement = false;
Alec Mouri554d06e2018-12-20 00:15:33 -0800232
Alec Mouri539319f2018-12-19 17:56:23 -0800233 // Cache of GL images that we'll store per GraphicBuffer ID
Alec Mourif0497272019-03-11 15:53:11 -0700234 std::unordered_map<uint64_t, std::unique_ptr<Image>> mImageCache GUARDED_BY(mRenderingMutex);
Alec Mouri368e1582020-08-13 10:14:29 -0700235 std::unordered_map<uint32_t, std::optional<uint64_t>> mTextureView;
236
Alec Mourif0497272019-03-11 15:53:11 -0700237 // Mutex guarding rendering operations, so that:
238 // 1. GL operations aren't interleaved, and
239 // 2. Internal state related to rendering that is potentially modified by
240 // multiple threads is guaranteed thread-safe.
241 std::mutex mRenderingMutex;
242
Alec Mouri820c7402019-01-23 13:02:39 -0800243 std::unique_ptr<Framebuffer> mDrawingBuffer;
Lingfeng Yang2e4fef62020-04-24 14:48:43 +0000244 // this is a 1x1 RGB buffer, but over-allocate in case a driver wants more
245 // memory or if it needs to satisfy alignment requirements. In this case:
246 // assume that each channel requires 4 bytes, and add 3 additional bytes to
247 // ensure that we align on a word. Allocating 16 bytes will provide a
248 // guarantee that we don't clobber memory.
249 uint32_t mPlaceholderDrawBuffer[4];
Alec Mouri368e1582020-08-13 10:14:29 -0700250 // Placeholder buffer and image, similar to mPlaceholderDrawBuffer, but
251 // instead these are intended for cleaning up texture memory with the
252 // GL_TEXTURE_EXTERNAL_OES target.
253 ANativeWindowBuffer* mPlaceholderBuffer = nullptr;
254 EGLImage mPlaceholderImage = EGL_NO_IMAGE_KHR;
Lingfeng Yang2e4fef62020-04-24 14:48:43 +0000255 sp<Fence> mLastDrawFence;
256 // Store a separate boolean checking if prior resources were cleaned up, as
257 // devices that don't support native sync fences can't rely on a last draw
258 // fence that doesn't exist.
259 bool mPriorResourcesCleaned = true;
Alec Mouri820c7402019-01-23 13:02:39 -0800260
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800261 // Blur effect processor, only instantiated when a layer requests it.
262 BlurFilter* mBlurFilter = nullptr;
263
Alec Mouri554d06e2018-12-20 00:15:33 -0800264 class FlushTracer {
265 public:
266 FlushTracer(GLESRenderEngine* engine);
267 ~FlushTracer();
268 void queueSync(EGLSyncKHR sync) EXCLUDES(mMutex);
269
270 struct QueueEntry {
271 EGLSyncKHR mSync = nullptr;
272 uint64_t mFrameNum = 0;
273 };
274
275 private:
276 void loop();
277 GLESRenderEngine* const mEngine;
278 std::thread mThread;
279 std::condition_variable_any mCondition;
280 std::mutex mMutex;
281 std::queue<QueueEntry> mQueue GUARDED_BY(mMutex);
282 uint64_t mFramesQueued GUARDED_BY(mMutex) = 0;
283 bool mRunning = true;
284 };
285 friend class FlushTracer;
Alec Mouri16a99402019-07-29 16:37:30 -0700286 friend class ImageManager;
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800287 friend class GLFramebuffer;
288 friend class BlurFilter;
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800289 friend class GenericProgram;
Alec Mouri554d06e2018-12-20 00:15:33 -0800290 std::unique_ptr<FlushTracer> mFlushTracer;
Alec Mouri16a99402019-07-29 16:37:30 -0700291 std::unique_ptr<ImageManager> mImageManager = std::make_unique<ImageManager>(this);
Mathias Agopian3f844832013-08-07 21:24:32 -0700292};
293
Peiyong Lin46080ef2018-10-26 18:43:14 -0700294} // namespace gl
295} // namespace renderengine
296} // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -0700297
Peiyong Lin7e219eb2018-12-03 05:40:42 -0800298#endif /* SF_GLESRENDERENGINE_H_ */