blob: d7b491083ddf541130dccce19fff4df0dd7d8854 [file] [log] [blame]
John Reck67b1e2b2020-08-26 13:17:24 -07001/*
2 * Copyright 2020 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 SF_SKIARENDERENGINE_H_
18#define SF_SKIARENDERENGINE_H_
19
20#include <renderengine/RenderEngine.h>
21#include <sys/types.h>
22
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070023#include <GrBackendSemaphore.h>
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070024#include <SkSurface.h>
25#include <android-base/thread_annotations.h>
26#include <renderengine/ExternalTexture.h>
27#include <renderengine/RenderEngine.h>
28#include <sys/types.h>
29
Nolan Scobiefc125ec2024-03-11 20:08:27 -040030#include <memory>
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070031#include <mutex>
32#include <unordered_map>
33
34#include "AutoBackendTexture.h"
35#include "GrContextOptions.h"
36#include "SkImageInfo.h"
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070037#include "android-base/macros.h"
Nolan Scobiefc125ec2024-03-11 20:08:27 -040038#include "compat/SkiaGpuContext.h"
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070039#include "debug/SkiaCapture.h"
40#include "filters/BlurFilter.h"
41#include "filters/LinearEffect.h"
42#include "filters/StretchShaderFactory.h"
43
44class SkData;
45
46struct SkPoint3;
47
John Reck67b1e2b2020-08-26 13:17:24 -070048namespace android {
49
50namespace renderengine {
51
52class Mesh;
53class Texture;
54
55namespace skia {
56
57class BlurFilter;
58
Alec Mouri081be4c2020-09-16 10:24:47 -070059class SkiaRenderEngine : public RenderEngine {
John Reck67b1e2b2020-08-26 13:17:24 -070060public:
61 static std::unique_ptr<SkiaRenderEngine> create(const RenderEngineCreationArgs& args);
Leon Scroggins III696bf932024-01-24 15:21:05 -050062 SkiaRenderEngine(Threaded, PixelFormat pixelFormat, bool supportsBackgroundBlur);
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070063 ~SkiaRenderEngine() override;
John Reck67b1e2b2020-08-26 13:17:24 -070064
Bruno BELANYIb9b5b702023-10-13 13:25:11 +000065 std::future<void> primeCache(bool shouldPrimeUltraHDR) override final;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070066 void cleanupPostRender() override final;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070067 bool supportsBackgroundBlur() override final {
68 return mBlurFilter != nullptr;
69 }
70 void onActiveDisplaySizeChanged(ui::Size size) override final;
71 int reportShadersCompiled();
Alec Mouria90a5702021-04-16 16:36:21 +000072
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070073 virtual void setEnableTracing(bool tracingEnabled) override final;
74
75 void useProtectedContext(bool useProtectedContext) override;
76 bool supportsProtectedContent() const override {
77 return supportsProtectedContentImpl();
78 }
Nolan Scobiefc125ec2024-03-11 20:08:27 -040079 void ensureContextsCreated();
80
Alec Mouria90a5702021-04-16 16:36:21 +000081protected:
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070082 // This is so backends can stop the generic rendering state first before
83 // cleaning up backend-specific state
84 void finishRenderingAndAbandonContext();
Sally Qi4cabdd02021-08-05 16:45:57 -070085
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070086 // Functions that a given backend (GLES, Vulkan) must implement
Nolan Scobiefc125ec2024-03-11 20:08:27 -040087 using Contexts = std::pair<unique_ptr<SkiaGpuContext>, unique_ptr<SkiaGpuContext>>;
88 virtual Contexts createContexts() = 0;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070089 virtual bool supportsProtectedContentImpl() const = 0;
90 virtual bool useProtectedContextImpl(GrProtected isProtected) = 0;
Nolan Scobiefc125ec2024-03-11 20:08:27 -040091 virtual void waitFence(SkiaGpuContext* context, base::borrowed_fd fenceFd) = 0;
Nolan Scobie1e06f2d2024-03-21 14:56:38 -040092 virtual base::unique_fd flushAndSubmit(SkiaGpuContext* context,
93 sk_sp<SkSurface> dstSurface) = 0;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -070094 virtual void appendBackendSpecificInfoToDump(std::string& result) = 0;
95
96 size_t getMaxTextureSize() const override final;
97 size_t getMaxViewportDims() const override final;
Nolan Scobie02c160c2024-03-18 10:40:23 -040098 // TODO: b/293371537 - Return reference instead of pointer? (Cleanup)
Nolan Scobiefc125ec2024-03-11 20:08:27 -040099 SkiaGpuContext* getActiveContext();
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700100
Patrick Williams8aed5d22022-10-31 22:18:10 +0000101 bool isProtected() const { return mInProtectedContext; }
102
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700103 // Implements PersistentCache as a way to monitor what SkSL shaders Skia has
104 // cached.
105 class SkSLCacheMonitor : public GrContextOptions::PersistentCache {
106 public:
107 SkSLCacheMonitor() = default;
108 ~SkSLCacheMonitor() override = default;
109
110 sk_sp<SkData> load(const SkData& key) override;
111
112 void store(const SkData& key, const SkData& data, const SkString& description) override;
113
114 int shadersCachedSinceLastCall() {
115 const int shadersCachedSinceLastCall = mShadersCachedSinceLastCall;
116 mShadersCachedSinceLastCall = 0;
117 return shadersCachedSinceLastCall;
118 }
119
120 int totalShadersCompiled() const { return mTotalShadersCompiled; }
121
122 private:
123 int mShadersCachedSinceLastCall = 0;
124 int mTotalShadersCompiled = 0;
Sally Qi4cabdd02021-08-05 16:45:57 -0700125 };
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700126
Nolan Scobiefc125ec2024-03-11 20:08:27 -0400127 SkSLCacheMonitor mSkSLCacheMonitor;
128
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700129private:
130 void mapExternalTextureBuffer(const sp<GraphicBuffer>& buffer,
131 bool isRenderable) override final;
Alec Mouri92f89fa2023-02-24 00:05:06 +0000132 void unmapExternalTextureBuffer(sp<GraphicBuffer>&& buffer) override final;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700133 bool canSkipPostRenderCleanup() const override final;
134
Ian Elliott8506e362023-03-08 12:12:09 -0700135 std::shared_ptr<AutoBackendTexture::LocalRef> getOrCreateBackendTexture(
136 const sp<GraphicBuffer>& buffer, bool isOutputBuffer) REQUIRES(mRenderingMutex);
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700137 void initCanvas(SkCanvas* canvas, const DisplaySettings& display);
138 void drawShadow(SkCanvas* canvas, const SkRRect& casterRRect,
139 const ShadowSettings& shadowSettings);
Patrick Williams2e9748f2022-08-09 22:48:18 +0000140 void drawLayersInternal(const std::shared_ptr<std::promise<FenceResult>>&& resultPromise,
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700141 const DisplaySettings& display,
142 const std::vector<LayerSettings>& layers,
143 const std::shared_ptr<ExternalTexture>& buffer,
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700144 base::unique_fd&& bufferFence) override final;
145
146 void dump(std::string& result) override final;
147
148 // If requiresLinearEffect is true or the layer has a stretchEffect a new shader is returned.
149 // Otherwise it returns the input shader.
150 struct RuntimeEffectShaderParameters {
151 sk_sp<SkShader> shader;
152 const LayerSettings& layer;
153 const DisplaySettings& display;
154 bool undoPremultipliedAlpha;
155 bool requiresLinearEffect;
156 float layerDimmingRatio;
Sally Qi628ef6e2023-03-30 14:49:03 -0700157 const ui::Dataspace outputDataSpace;
Alec Mourie0bb6f42023-08-02 22:41:52 +0000158 const ui::Dataspace fakeOutputDataspace;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700159 };
160 sk_sp<SkShader> createRuntimeEffectShader(const RuntimeEffectShaderParameters&);
161
162 const PixelFormat mDefaultPixelFormat;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700163
164 // Identifier used for various mappings of layers to various
165 // textures or shaders
166 using GraphicBufferId = uint64_t;
167
168 // Number of external holders of ExternalTexture references, per GraphicBuffer ID.
169 std::unordered_map<GraphicBufferId, int32_t> mGraphicBufferExternalRefs
170 GUARDED_BY(mRenderingMutex);
Ian Elliott8506e362023-03-08 12:12:09 -0700171 // For GL, this cache is shared between protected and unprotected contexts. For Vulkan, it is
172 // only used for the unprotected context, because Vulkan does not allow sharing between
173 // contexts, and protected is less common.
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700174 std::unordered_map<GraphicBufferId, std::shared_ptr<AutoBackendTexture::LocalRef>> mTextureCache
175 GUARDED_BY(mRenderingMutex);
176 std::unordered_map<shaders::LinearEffect, sk_sp<SkRuntimeEffect>, shaders::LinearEffectHasher>
177 mRuntimeEffects;
178 AutoBackendTexture::CleanupManager mTextureCleanupMgr GUARDED_BY(mRenderingMutex);
179
180 StretchShaderFactory mStretchShaderFactory;
181
182 sp<Fence> mLastDrawFence;
183 BlurFilter* mBlurFilter = nullptr;
184
185 // Object to capture commands send to Skia.
186 std::unique_ptr<SkiaCapture> mCapture;
187
188 // Mutex guarding rendering operations, so that internal state related to
189 // rendering that is potentially modified by multiple threads is guaranteed thread-safe.
190 mutable std::mutex mRenderingMutex;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700191
192 // Graphics context used for creating surfaces and submitting commands
Nolan Scobiefc125ec2024-03-11 20:08:27 -0400193 unique_ptr<SkiaGpuContext> mContext;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700194 // Same as above, but for protected content (eg. DRM)
Nolan Scobiefc125ec2024-03-11 20:08:27 -0400195 unique_ptr<SkiaGpuContext> mProtectedContext;
Lingfeng Yang00c1ff62022-06-02 09:19:28 -0700196 bool mInProtectedContext = false;
John Reck67b1e2b2020-08-26 13:17:24 -0700197};
198
199} // namespace skia
200} // namespace renderengine
201} // namespace android
202
Leon Scroggins IIIb9216dc2021-03-08 17:19:01 -0500203#endif /* SF_GLESRENDERENGINE_H_ */