1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
gpu / command_buffer / service / shared_image / wrapped_sk_image_backing_factory.cc [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/command_buffer/service/shared_image/wrapped_sk_image_backing_factory.h"
#include "base/memory/scoped_refptr.h"
#include "base/types/pass_key.h"
#include "build/build_config.h"
#include "components/viz/common/resources/shared_image_format.h"
#include "components/viz/common/resources/shared_image_format_utils.h"
#include "gpu/command_buffer/common/shared_image_usage.h"
#include "gpu/command_buffer/service/dawn_context_provider.h"
#include "gpu/command_buffer/service/feature_info.h"
#include "gpu/command_buffer/service/shared_context_state.h"
#include "gpu/command_buffer/service/shared_image/shared_image_backing.h"
#include "gpu/command_buffer/service/shared_image/wrapped_graphite_texture_backing.h"
#include "gpu/command_buffer/service/shared_image/wrapped_sk_image_backing.h"
#include "gpu/config/gpu_finch_features.h"
#include "skia/buildflags.h"
#include "third_party/skia/include/core/SkAlphaType.h"
#include "third_party/skia/include/core/SkColorType.h"
#include "third_party/skia/include/core/SkSurface.h"
#include "third_party/skia/include/core/SkTextureCompressionType.h"
#include "third_party/skia/include/gpu/ganesh/GrDirectContext.h"
#include "third_party/skia/include/gpu/ganesh/GrTypes.h"
namespace gpu {
namespace {
// NOTE: WrappedSkImage cannot be used with raster-over-GLES2 as it doesn't
// support GLES2 usage, and hence it doesn't support RASTER_OVER_GLES2_ONLY
// usage.
constexpr SharedImageUsageSet kSupportedUsage =
SHARED_IMAGE_USAGE_DISPLAY_READ | SHARED_IMAGE_USAGE_DISPLAY_WRITE |
SHARED_IMAGE_USAGE_RASTER_READ | SHARED_IMAGE_USAGE_RASTER_WRITE |
SHARED_IMAGE_USAGE_OOP_RASTERIZATION | SHARED_IMAGE_USAGE_CPU_UPLOAD |
SHARED_IMAGE_USAGE_MIPMAP;
SharedImageUsageSet GetSupportedUsage(const SharedContextState* context_state) {
#if BUILDFLAG(SKIA_USE_DAWN) && !BUILDFLAG(IS_ANDROID)
// We support WebGL and WebGPU fallback when using Graphite Dawn Vulkan or
// D3D12. Except on Android where AHardwareBufferImageBackingFactory is used
// for interop with WebGL and WebGPU.
constexpr SharedImageUsageSet kGraphiteDawnFallbackUsage =
SHARED_IMAGE_USAGE_GLES2_READ | SHARED_IMAGE_USAGE_GLES2_WRITE |
SHARED_IMAGE_USAGE_GLES2_FOR_RASTER_ONLY |
// NOTE: In this case, it is also possible to support raster-over-GLES2.
SHARED_IMAGE_USAGE_RASTER_OVER_GLES2_ONLY |
SHARED_IMAGE_USAGE_WEBGPU_READ | SHARED_IMAGE_USAGE_WEBGPU_WRITE |
SHARED_IMAGE_USAGE_WEBGPU_SWAP_CHAIN_TEXTURE;
if (context_state->IsGraphiteDawn()) {
switch (context_state->dawn_context_provider()->backend_type()) {
case wgpu::BackendType::D3D12:
case wgpu::BackendType::Vulkan:
return kSupportedUsage | kGraphiteDawnFallbackUsage;
default:
break;
}
}
#endif
return kSupportedUsage;
}
bool GraphiteSupportsCompressedTextures(
const SharedContextState* context_state) {
#if BUILDFLAG(SKIA_USE_DAWN)
// TODO(b/281151641): Query graphite instead of dawn to see if compressed
// textures are supported.
if (context_state->IsGraphiteDawn()) {
return context_state->dawn_context_provider()->SupportsFeature(
wgpu::FeatureName::TextureCompressionETC2);
}
#endif
return false;
}
} // namespace
WrappedSkImageBackingFactory::WrappedSkImageBackingFactory(
scoped_refptr<SharedContextState> context_state)
: SharedImageBackingFactory(GetSupportedUsage(context_state.get())),
context_state_(std::move(context_state)),
use_graphite_(context_state_->graphite_context()),
is_drdc_enabled_(
features::IsDrDcEnabled() &&
!context_state_->feature_info()->workarounds().disable_drdc),
graphite_supports_compressed_textures_(
GraphiteSupportsCompressedTextures(context_state_.get())) {}
WrappedSkImageBackingFactory::~WrappedSkImageBackingFactory() = default;
std::unique_ptr<SharedImageBacking>
WrappedSkImageBackingFactory::CreateSharedImage(
const Mailbox& mailbox,
viz::SharedImageFormat format,
SurfaceHandle surface_handle,
const gfx::Size& size,
const gfx::ColorSpace& color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
SharedImageUsageSet usage,
std::string debug_label,
bool is_thread_safe) {
if (use_graphite_) {
auto backing = std::make_unique<WrappedGraphiteTextureBacking>(
base::PassKey<WrappedSkImageBackingFactory>(), mailbox, format, size,
color_space, surface_origin, alpha_type, usage, std::move(debug_label),
context_state_, is_thread_safe);
if (!backing->Initialize()) {
return nullptr;
}
return backing;
}
CHECK(context_state_->gr_context());
auto backing = std::make_unique<WrappedSkImageBacking>(
base::PassKey<WrappedSkImageBackingFactory>(), mailbox, format, size,
color_space, surface_origin, alpha_type, usage, debug_label,
context_state_, is_thread_safe);
if (!backing->Initialize(debug_label)) {
return nullptr;
}
return backing;
}
std::unique_ptr<SharedImageBacking>
WrappedSkImageBackingFactory::CreateSharedImage(
const Mailbox& mailbox,
viz::SharedImageFormat format,
const gfx::Size& size,
const gfx::ColorSpace& color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
SharedImageUsageSet usage,
std::string debug_label,
bool is_thread_safe,
base::span<const uint8_t> data) {
if (use_graphite_) {
auto backing = std::make_unique<WrappedGraphiteTextureBacking>(
base::PassKey<WrappedSkImageBackingFactory>(), mailbox, format, size,
color_space, surface_origin, alpha_type, usage, std::move(debug_label),
context_state_, is_thread_safe);
if (!backing->InitializeWithData(data)) {
return nullptr;
}
return backing;
}
CHECK(context_state_->gr_context());
auto backing = std::make_unique<WrappedSkImageBacking>(
base::PassKey<WrappedSkImageBackingFactory>(), mailbox, format, size,
color_space, surface_origin, alpha_type, usage, debug_label,
context_state_, is_thread_safe);
if (!backing->InitializeWithData(debug_label, data)) {
return nullptr;
}
return backing;
}
std::unique_ptr<SharedImageBacking>
WrappedSkImageBackingFactory::CreateSharedImage(
const Mailbox& mailbox,
viz::SharedImageFormat format,
const gfx::Size& size,
const gfx::ColorSpace& color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
SharedImageUsageSet usage,
std::string debug_label,
gfx::GpuMemoryBufferHandle handle) {
NOTREACHED();
}
bool WrappedSkImageBackingFactory::IsSupported(
SharedImageUsageSet usage,
viz::SharedImageFormat format,
const gfx::Size& size,
bool thread_safe,
gfx::GpuMemoryBufferType gmb_type,
GrContextType gr_context_type,
base::span<const uint8_t> pixel_data) {
if (gmb_type != gfx::EMPTY_BUFFER) {
return false;
}
if (!GetSupportedUsage(context_state_.get()).HasAll(usage)) {
return false;
}
// Note that this backing support thread safety only for vulkan mode because
// the underlying vulkan resources like vulkan images can be shared across
// multiple vulkan queues. Also note that this backing currently only supports
// thread safety for DrDc mode where both gpu main and drdc thread uses/shared
// a single vulkan queue to submit work and hence do not need to synchronize
// the reads/writes using semaphores. For this backing to support thread
// safety across multiple queues, we need to synchronize the reads/writes via
// semaphores.
if (thread_safe) {
bool is_vulkan = gr_context_type == GrContextType::kVulkan ||
context_state_->IsGraphiteDawnVulkan();
if (!is_drdc_enabled_ || !is_vulkan) {
return false;
}
}
if (format == viz::SinglePlaneFormat::kLUMINANCE_8) {
// WrappedSkImage does not support LUMINANCE_8. See
// https://crbug.com/1252502 for details.
return false;
} else if (format == viz::SinglePlaneFormat::kALPHA_8) {
// For ALPHA8 skia will pick format depending on context version and
// extensions available and we'll have to match that format when we record
// DDLs. To avoid matching logic here, fallback to other backings (e.g
// GLTextureImageBacking) where we control what format was used.
if (gr_context_type == GrContextType::kGL) {
return false;
}
} else if (format == viz::SinglePlaneFormat::kBGRX_8888 ||
format == viz::SinglePlaneFormat::kBGR_565) {
// For BGRX_8888/BGR_565 there is no equivalent SkColorType. Skia will use
// the RGBX_8888/RGB_565 color type on upload so R/B channels are reversed.
if (usage.Has(SHARED_IMAGE_USAGE_CPU_UPLOAD) || !pixel_data.empty()) {
return false;
}
}
if (context_state_->context_lost()) {
return false;
}
if (format.IsCompressed()) {
if (pixel_data.empty()) {
// ETC1 is only supported with initial pixel upload.
return false;
}
if (use_graphite_) {
return graphite_supports_compressed_textures_;
}
auto backend_format = context_state_->gr_context()->compressedBackendFormat(
SkTextureCompressionType::kETC1_RGB8);
return backend_format.isValid();
}
// TODO(b/281151641): Check for formats are supported with graphite.
if (context_state_->gr_context()) {
// Check that skia-ganesh can create the required backend textures.
for (int plane = 0; plane < format.NumberOfPlanes(); ++plane) {
SkColorType color_type = viz::ToClosestSkColorType(format, plane);
// For ALPHA8 skia will pick format depending on context version and
// extensions available and we'll have to match that format when we record
// DDLs. To avoid matching logic here, fallback to other backings (e.g
// GLTextureImageBacking) where we control what format was used.
if (color_type == kAlpha_8_SkColorType &&
context_state_->feature_info()->workarounds().r8_egl_images_broken) {
return false;
}
auto backend_format = context_state_->gr_context()->defaultBackendFormat(
color_type, GrRenderable::kYes);
if (!backend_format.isValid()) {
return false;
}
}
}
return true;
}
SharedImageBackingType WrappedSkImageBackingFactory::GetBackingType() {
if (use_graphite_) {
return SharedImageBackingType::kWrappedGraphiteTexture;
} else {
return SharedImageBackingType::kWrappedSkImage;
}
}
} // namespace gpu