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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
gpu / command_buffer / service / copy_shared_image_helper.cc [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "gpu/command_buffer/service/copy_shared_image_helper.h"
#include <memory>
#include <vector>
#include "base/check.h"
#include "base/types/expected.h"
#include "base/types/expected_macros.h"
#include "gpu/command_buffer/common/mailbox.h"
#include "gpu/command_buffer/service/shared_context_state.h"
#include "gpu/command_buffer/service/shared_image/shared_image_factory.h"
#include "gpu/command_buffer/service/shared_image/shared_image_format_service_utils.h"
#include "gpu/command_buffer/service/shared_image/shared_image_representation.h"
#include "gpu/command_buffer/service/texture_manager.h"
#include "skia/ext/rgba_to_yuva.h"
#include "third_party/abseil-cpp/absl/cleanup/cleanup.h"
#include "third_party/libyuv/include/libyuv/planar_functions.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "third_party/skia/include/core/SkColorSpace.h"
#include "third_party/skia/include/core/SkImage.h"
#include "third_party/skia/include/core/SkRect.h"
#include "third_party/skia/include/core/SkSurface.h"
#include "third_party/skia/include/gpu/ganesh/GrBackendSemaphore.h"
#include "third_party/skia/include/gpu/ganesh/GrDirectContext.h"
#include "third_party/skia/include/gpu/ganesh/GrTypes.h"
#include "third_party/skia/include/gpu/ganesh/SkSurfaceGanesh.h"
#include "third_party/skia/include/gpu/ganesh/gl/GrGLBackendSurface.h"
#include "third_party/skia/include/gpu/ganesh/gl/GrGLTypes.h"
#include "third_party/skia/include/gpu/graphite/Context.h"
#include "third_party/skia/include/gpu/graphite/Image.h"
#include "third_party/skia/include/gpu/graphite/Recorder.h"
#include "ui/gfx/geometry/skia_conversions.h"
namespace gpu {
using GLError = CopySharedImageHelper::GLError;
namespace {
SkColorType GetCompatibleSurfaceColorType(GrGLenum format) {
switch (format) {
case GL_RGBA8:
return kRGBA_8888_SkColorType;
case GL_RGB565:
return kRGB_565_SkColorType;
case GL_RGBA16F:
return kRGBA_F16_SkColorType;
case GL_RGB8:
return kRGB_888x_SkColorType;
case GL_RGB10_A2:
return kRGBA_1010102_SkColorType;
case GL_RGBA4:
return kARGB_4444_SkColorType;
case GL_SRGB8_ALPHA8:
return kRGBA_8888_SkColorType;
default:
NOTREACHED() << "Unknown format: " << format;
}
}
GrGLenum GetSurfaceColorFormat(GrGLenum format, GrGLenum type) {
if (format == GL_RGBA) {
if (type == GL_UNSIGNED_BYTE) {
return GL_RGBA8;
}
if (type == GL_UNSIGNED_SHORT_4_4_4_4) {
return GL_RGBA4;
}
}
if (format == GL_RGB) {
if (type == GL_UNSIGNED_BYTE) {
return GL_RGB8;
}
if (type == GL_UNSIGNED_SHORT_5_6_5) {
return GL_RGB565;
}
}
return format;
}
// Returns an SkSurface wrapping `texture_id`. Assumes the presence of a Ganesh
// GL context to do the wrapping.
sk_sp<SkSurface> CreateSkSurfaceWrappingGLTexture(
SharedContextState* shared_context_state,
GLuint texture_id,
GLenum target,
GLuint internal_format,
GLenum type,
GLsizei width,
GLsizei height,
GLboolean flip_y) {
CHECK_NE(texture_id, 0u);
CHECK(shared_context_state->GrContextIsGL());
GrGLTextureInfo texture_info;
texture_info.fID = texture_id;
texture_info.fTarget = target;
// Get the surface color format similar to that in VideoFrameYUVConverter.
texture_info.fFormat = GetSurfaceColorFormat(internal_format, type);
auto backend_texture = GrBackendTextures::MakeGL(
width, height, skgpu::Mipmapped::kNo, texture_info);
auto dest_color_space = SkColorSpace::MakeSRGB();
GrDirectContext* direct_context = shared_context_state->gr_context();
CHECK(direct_context);
return SkSurfaces::WrapBackendTexture(
direct_context, backend_texture,
flip_y ? GrSurfaceOrigin::kBottomLeft_GrSurfaceOrigin
: GrSurfaceOrigin::kTopLeft_GrSurfaceOrigin,
/*sampleCnt=*/1, GetCompatibleSurfaceColorType(texture_info.fFormat),
dest_color_space, nullptr);
}
bool TryCopySubTextureINTERNALMemory(
GLint xoffset,
GLint yoffset,
GLint x,
GLint y,
GLsizei width,
GLsizei height,
gfx::Rect dest_cleared_rect,
const Mailbox& source_mailbox,
SkiaImageRepresentation* dest_shared_image,
SkiaImageRepresentation::ScopedWriteAccess* dest_scoped_access,
SharedImageRepresentationFactory* representation_factory,
SharedContextState* shared_context_state,
const std::vector<GrBackendSemaphore>& begin_semaphores,
std::vector<GrBackendSemaphore>& end_semaphores) {
auto source_shared_image =
representation_factory->ProduceMemory(source_mailbox);
if (!source_shared_image) {
return false;
}
if (source_shared_image->surface_origin() !=
dest_shared_image->surface_origin()) {
return false;
}
gfx::Size source_size = source_shared_image->size();
gfx::Rect source_rect(x, y, width, height);
if (!gfx::Rect(source_size).Contains(source_rect)) {
return false;
}
auto scoped_read_access = source_shared_image->BeginScopedReadAccess();
if (!scoped_read_access) {
return false;
}
SkPixmap pm = scoped_read_access->pixmap();
SkIRect skIRect = RectToSkIRect(source_rect);
SkPixmap subset;
if (!pm.extractSubset(&subset, skIRect)) {
return false;
}
if (!begin_semaphores.empty()) {
bool result = dest_scoped_access->surface()->wait(
begin_semaphores.size(), begin_semaphores.data(),
/*deleteSemaphoresAfterWait=*/false);
DCHECK(result);
}
dest_scoped_access->surface()->writePixels(subset, xoffset, yoffset);
shared_context_state->FlushWriteAccess(dest_scoped_access);
shared_context_state->SubmitIfNecessary(
std::move(end_semaphores),
dest_scoped_access->NeedGraphiteContextSubmit());
if (!dest_shared_image->IsCleared()) {
dest_shared_image->SetClearedRect(dest_cleared_rect);
}
return true;
}
struct ReadPixelsContext {
std::unique_ptr<const SkImage::AsyncReadResult> async_result;
bool finished = false;
};
void OnReadPixelsDone(
void* raw_ctx,
std::unique_ptr<const SkImage::AsyncReadResult> async_result) {
ReadPixelsContext* context = reinterpret_cast<ReadPixelsContext*>(raw_ctx);
context->async_result = std::move(async_result);
context->finished = true;
}
} // namespace
CopySharedImageHelper::CopySharedImageHelper(
SharedImageRepresentationFactory* representation_factory,
SharedContextState* shared_context_state)
: representation_factory_(representation_factory),
shared_context_state_(shared_context_state) {}
CopySharedImageHelper::~CopySharedImageHelper() = default;
CopySharedImageHelper::GLError::GLError(GLenum gl_error,
std::string function_name,
std::string msg)
: gl_error(gl_error),
function_name(std::move(function_name)),
msg(std::move(msg)) {}
base::expected<void, GLError> CopySharedImageHelper::CopySharedImage(
GLint xoffset,
GLint yoffset,
GLint x,
GLint y,
GLsizei width,
GLsizei height,
const volatile GLbyte* mailboxes) {
Mailbox source_mailbox = Mailbox::FromVolatile(
reinterpret_cast<const volatile Mailbox*>(mailboxes)[0]);
DLOG_IF(ERROR, !source_mailbox.Verify())
<< "CopySubTexture was passed an invalid mailbox";
Mailbox dest_mailbox = Mailbox::FromVolatile(
reinterpret_cast<const volatile Mailbox*>(mailboxes)[1]);
DLOG_IF(ERROR, !dest_mailbox.Verify())
<< "CopySubTexture was passed an invalid mailbox";
if (source_mailbox == dest_mailbox) {
return base::unexpected(
GLError(GL_INVALID_OPERATION, "glCopySubTexture",
"source and destination mailboxes are the same"));
}
auto dest_shared_image = representation_factory_->ProduceSkia(
dest_mailbox,
scoped_refptr<gpu::SharedContextState>(shared_context_state_));
if (!dest_shared_image) {
return base::unexpected(
GLError(GL_INVALID_VALUE, "glCopySubTexture", "unknown mailbox"));
}
auto dest_format = dest_shared_image->format();
// Destination shared image cannot prefer external sampler.
if (dest_format.PrefersExternalSampler()) {
return base::unexpected(
GLError(GL_INVALID_VALUE, "glCopySubTexture", "unexpected format"));
}
gfx::Size dest_size = dest_shared_image->size();
gfx::Rect dest_rect(xoffset, yoffset, width, height);
if (!gfx::Rect(dest_size).Contains(dest_rect)) {
return base::unexpected(GLError(GL_INVALID_VALUE, "glCopySubTexture",
"destination texture bad dimensions."));
}
std::vector<GrBackendSemaphore> begin_semaphores;
std::vector<GrBackendSemaphore> end_semaphores;
// Allow uncleared access, as we manually handle clear tracking.
std::unique_ptr<SkiaImageRepresentation::ScopedWriteAccess>
dest_scoped_access = dest_shared_image->BeginScopedWriteAccess(
&begin_semaphores, &end_semaphores,
SharedImageRepresentation::AllowUnclearedAccess::kYes);
if (!dest_scoped_access) {
return base::unexpected(GLError(GL_INVALID_VALUE, "glCopySubTexture",
"Dest shared image is not writable"));
}
bool need_graphite_submit = dest_scoped_access->NeedGraphiteContextSubmit();
// Flush dest surface and submit if necessary before exiting.
absl::Cleanup cleanup = [&]() {
shared_context_state_->FlushWriteAccess(dest_scoped_access.get());
shared_context_state_->SubmitIfNecessary(std::move(end_semaphores),
need_graphite_submit);
};
gfx::Rect new_cleared_rect;
gfx::Rect old_cleared_rect = dest_shared_image->ClearedRect();
if (!gles2::TextureManager::CombineAdjacentRects(old_cleared_rect, dest_rect,
&new_cleared_rect)) {
// No users of RasterDecoder leverage this functionality. Clearing uncleared
// regions could be added here if needed.
return base::unexpected(GLError(GL_INVALID_VALUE, "glCopySubTexture",
"Cannot clear non-combineable rects."));
}
DCHECK(old_cleared_rect.IsEmpty() ||
new_cleared_rect.Contains(old_cleared_rect));
// Attempt to upload directly from CPU shared memory to destination texture.
if (TryCopySubTextureINTERNALMemory(
xoffset, yoffset, x, y, width, height, new_cleared_rect,
source_mailbox, dest_shared_image.get(), dest_scoped_access.get(),
representation_factory_, shared_context_state_, begin_semaphores,
end_semaphores)) {
// Cancel cleanup as TryCopySubTextureINTERNALMemory already handles it.
std::move(cleanup).Cancel();
return base::ok();
}
// Fall back to GPU->GPU copy if src image is not CPU-backed.
auto source_shared_image = representation_factory_->ProduceSkia(
source_mailbox,
scoped_refptr<gpu::SharedContextState>(shared_context_state_));
// In some cases (e.g android video that is promoted to overlay) we can't
// create representation of the valid mailbox. To avoid problems with
// uncleared destination later, we do clear destination rect with black
// color.
if (!source_shared_image) {
auto* canvas = dest_scoped_access->surface()->getCanvas();
SkAutoCanvasRestore autoRestore(canvas, /*doSave=*/true);
canvas->clipRect(gfx::RectToSkRect(dest_rect));
canvas->clear(SkColors::kBlack);
if (!dest_shared_image->IsCleared()) {
dest_shared_image->SetClearedRect(new_cleared_rect);
}
// Note, that we still generate error for the client to indicate there was
// problem.
return base::unexpected(GLError(GL_INVALID_VALUE, "glCopySubTexture",
"unknown source image mailbox."));
}
gfx::Size source_size = source_shared_image->size();
gfx::Rect source_rect(x, y, width, height);
if (!gfx::Rect(source_size).Contains(source_rect)) {
return base::unexpected(GLError(GL_INVALID_VALUE, "glCopySubTexture",
"source texture bad dimensions."));
}
std::unique_ptr<SkiaImageRepresentation::ScopedReadAccess>
source_scoped_access = source_shared_image->BeginScopedReadAccess(
&begin_semaphores, &end_semaphores);
if (!begin_semaphores.empty()) {
GrDirectContext* direct_context = shared_context_state_->gr_context();
bool ret =
direct_context->wait(begin_semaphores.size(), begin_semaphores.data(),
/*deleteSemaphoresAfterWait=*/false);
DCHECK(ret);
}
if (!source_scoped_access) {
return base::unexpected(GLError(GL_INVALID_VALUE, "glCopySubTexture",
"Source shared image is not accessable"));
}
// Update submit is needed by `source_scoped_access`.
need_graphite_submit |= source_scoped_access->NeedGraphiteContextSubmit();
base::expected<void, GLError> result = base::ok();
auto source_image =
source_scoped_access->CreateSkImage(shared_context_state_);
if (!source_image) {
result = base::unexpected(
GLError(GL_INVALID_VALUE, "glCopySubTexture",
"Couldn't create SkImage from source shared image."));
} else {
if (dest_format.is_single_plane()) {
auto* canvas = dest_scoped_access->surface()->getCanvas();
// Reinterpret the source image as being in the destination color space,
// to disable color conversion.
auto source_image_reinterpreted = source_image;
if (canvas->imageInfo().colorSpace()) {
source_image_reinterpreted = source_image->reinterpretColorSpace(
canvas->imageInfo().refColorSpace());
}
SkPaint paint;
paint.setBlendMode(SkBlendMode::kSrc);
canvas->drawImageRect(source_image_reinterpreted,
gfx::RectToSkRect(source_rect),
gfx::RectToSkRect(dest_rect), SkSamplingOptions(),
&paint, SkCanvas::kStrict_SrcRectConstraint);
} else {
SkSurface* yuva_sk_surfaces[SkYUVAInfo::kMaxPlanes] = {};
for (int plane_index = 0; plane_index < dest_format.NumberOfPlanes();
plane_index++) {
// Get surface per plane from destination scoped write access.
yuva_sk_surfaces[plane_index] =
dest_scoped_access->surface(plane_index);
}
// TODO(crbug.com/41380578): This should really default to rec709.
SkYUVColorSpace yuv_color_space = kRec601_SkYUVColorSpace;
dest_shared_image->color_space().ToSkYUVColorSpace(
dest_format.MultiplanarBitDepth(), &yuv_color_space);
SkYUVAInfo yuva_info(gfx::SizeToSkISize(dest_shared_image->size()),
ToSkYUVAPlaneConfig(dest_format),
ToSkYUVASubsampling(dest_format), yuv_color_space);
// Perform skia::BlitRGBAToYUVA for the multiplanar YUV format image.
// TODO(crbug.com/40270413): This will scale the image if the source image
// is smaller than the destination image. What we should actually do
// instead is just blit the destination rect and clear out the rest.
// However, doing that resulted in resulted in pixeltest failures due to
// images having pixel bleeding at their borders when this codepath is
// used by RenderableGMBVideoFramePool (see the bug for details). The
// current behavior of scaling the image matches the legacy
// (non-multiplanar SI) behavior in RenderableGMBVideoFramePool, so it is
// not a regression. Nonetheless, this behavior should
// ideally be changed to that described above for correctness.
skia::BlitRGBAToYUVA(source_image.get(), yuva_sk_surfaces, yuva_info);
dest_shared_image->SetCleared();
}
if (!dest_shared_image->IsCleared()) {
dest_shared_image->SetClearedRect(new_cleared_rect);
}
}
// Cancel cleanup as the cleanup order is different here.
std::move(cleanup).Cancel();
shared_context_state_->FlushWriteAccess(dest_scoped_access.get());
source_scoped_access->ApplyBackendSurfaceEndState();
shared_context_state_->SubmitIfNecessary(std::move(end_semaphores),
need_graphite_submit);
return result;
}
base::expected<void, GLError> CopySharedImageHelper::CopySharedImageToGLTexture(
GLuint dest_texture_id,
GLenum target,
GLuint internal_format,
GLenum type,
GLint src_x,
GLint src_y,
GLsizei width,
GLsizei height,
GLboolean flip_y,
const volatile GLbyte* src_mailbox) {
Mailbox source_mailbox = Mailbox::FromVolatile(
reinterpret_cast<const volatile Mailbox*>(src_mailbox)[0]);
DLOG_IF(ERROR, !source_mailbox.Verify())
<< "CopySharedImageToGLTexture was passed an invalid mailbox";
GrDirectContext* direct_context = shared_context_state_->gr_context();
CHECK(direct_context);
sk_sp<SkSurface> dest_surface = CreateSkSurfaceWrappingGLTexture(
shared_context_state_, dest_texture_id, target, internal_format, type,
width, height, flip_y);
if (!dest_surface) {
return base::unexpected<GLError>(
GLError(GL_INVALID_VALUE, "glCopySharedImageToTexture",
"Cannot create destination surface"));
}
// `dest_rect` always starts from (0, 0).
SkRect dest_rect =
SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
auto source_shared_image = representation_factory_->ProduceSkia(
source_mailbox,
scoped_refptr<gpu::SharedContextState>(shared_context_state_));
// In some cases (e.g android video that is promoted to overlay) we can't
// create representation of the valid mailbox. To avoid problems with
// uncleared destination later, we do clear destination rect with black
// color.
if (!source_shared_image) {
auto* canvas = dest_surface->getCanvas();
SkAutoCanvasRestore autoRestore(canvas, /*doSave=*/true);
canvas->clipRect(dest_rect);
canvas->clear(SkColors::kBlack);
direct_context->flush(dest_surface.get());
shared_context_state_->SubmitIfNecessary(/*signal_semaphores=*/{},
/*need_graphite_submit=*/false);
// Note, that we still generate error for the client to indicate there was
// problem.
return base::unexpected<GLError>(GLError(GL_INVALID_VALUE,
"glCopySharedImageToTexture",
"unknown source image mailbox."));
}
gfx::Size source_size = source_shared_image->size();
gfx::Rect source_rect(src_x, src_y, width, height);
if (!gfx::Rect(source_size).Contains(source_rect)) {
return base::unexpected<GLError>(GLError(GL_INVALID_VALUE,
"glCopySharedImageToTexture",
"source texture bad dimensions."));
}
std::vector<GrBackendSemaphore> begin_semaphores;
std::vector<GrBackendSemaphore> end_semaphores;
std::unique_ptr<SkiaImageRepresentation::ScopedReadAccess>
source_scoped_access = source_shared_image->BeginScopedReadAccess(
&begin_semaphores, &end_semaphores);
if (!begin_semaphores.empty()) {
bool ret =
dest_surface->wait(begin_semaphores.size(), begin_semaphores.data(),
/*deleteSemaphoresAfterWait=*/false);
DCHECK(ret);
}
if (!source_scoped_access) {
// We still need to flush surface for begin semaphores above.
direct_context->flush(dest_surface.get());
shared_context_state_->SubmitIfNecessary(std::move(end_semaphores),
/*need_graphite_submit=*/false);
return base::unexpected<GLError>(
GLError(GL_INVALID_VALUE, "glCopySharedImageToTexture",
"Source shared image is not accessable"));
}
base::expected<void, GLError> result = base::ok();
auto source_image =
source_scoped_access->CreateSkImage(shared_context_state_);
if (!source_image) {
result = base::unexpected<GLError>(
GLError(GL_INVALID_VALUE, "glCopySharedImageToTexture",
"Couldn't create SkImage from source shared image."));
} else {
auto* canvas = dest_surface->getCanvas();
SkPaint paint;
paint.setBlendMode(SkBlendMode::kSrc);
// Reinterpret the source image as being in the destination color space,
// to disable color conversion.
auto source_image_reinterpreted = source_image;
if (canvas->imageInfo().colorSpace()) {
source_image_reinterpreted = source_image->reinterpretColorSpace(
canvas->imageInfo().refColorSpace());
}
canvas->drawImageRect(
source_image_reinterpreted, gfx::RectToSkRect(source_rect), dest_rect,
SkSamplingOptions(), &paint, SkCanvas::kStrict_SrcRectConstraint);
}
direct_context->flush(dest_surface.get());
source_scoped_access->ApplyBackendSurfaceEndState();
shared_context_state_->SubmitIfNecessary(std::move(end_semaphores),
/*need_graphite_submit=*/false);
return result;
}
base::expected<void, GLError> CopySharedImageHelper::ReadPixels(
GLint src_x,
GLint src_y,
GLint plane_index,
GLuint row_bytes,
SkImageInfo dst_info,
void* pixel_address,
std::unique_ptr<SkiaImageRepresentation> source_shared_image) {
std::vector<GrBackendSemaphore> begin_semaphores;
std::vector<GrBackendSemaphore> end_semaphores;
std::unique_ptr<SkiaImageRepresentation::ScopedReadAccess>
source_scoped_access = source_shared_image->BeginScopedReadAccess(
&begin_semaphores, &end_semaphores);
if (!source_scoped_access) {
return base::unexpected(GLError(GL_INVALID_VALUE, "glReadbackImagePixels",
"Source shared image is not accessible"));
}
auto* gr_context = shared_context_state_->gr_context();
if (!begin_semaphores.empty()) {
CHECK(gr_context);
bool wait_result =
gr_context->wait(begin_semaphores.size(), begin_semaphores.data(),
/*deleteSemaphoresAfterWait=*/false);
DCHECK(wait_result);
}
sk_sp<SkImage> sk_image;
if (source_shared_image->format().is_single_plane() ||
source_shared_image->format().PrefersExternalSampler()) {
// Create SkImage without plane index for single planar formats or legacy
// multiplanar formats with external sampler.
sk_image = source_scoped_access->CreateSkImage(shared_context_state_);
} else {
// Pass plane index for creating an SkImage for multiplanar formats.
sk_image = source_scoped_access->CreateSkImageForPlane(
plane_index, shared_context_state_);
}
if (!sk_image) {
source_scoped_access->ApplyBackendSurfaceEndState();
shared_context_state_->SubmitIfNecessary(
std::move(end_semaphores),
source_scoped_access->NeedGraphiteContextSubmit());
return base::unexpected(GLError(GL_INVALID_OPERATION,
"glReadbackImagePixels",
"Couldn't create SkImage for reading."));
}
// TODO(crbug.com/40942998): Add back src_rect validation once renderer passes
// a correct rect size.
bool success = false;
if (gr_context) {
success = sk_image->readPixels(gr_context, dst_info, pixel_address,
row_bytes, src_x, src_y);
source_scoped_access->ApplyBackendSurfaceEndState();
shared_context_state_->SubmitIfNecessary(
std::move(end_semaphores), /*need_graphite_context_submit==*/false);
} else {
auto* graphite_context = shared_context_state_->graphite_context();
CHECK(graphite_context);
ReadPixelsContext context;
gfx::Rect src_rect(src_x, src_y, dst_info.width(), dst_info.height());
graphite_context->asyncRescaleAndReadPixels(
sk_image.get(), dst_info, RectToSkIRect(src_rect),
SkImage::RescaleGamma::kSrc, SkImage::RescaleMode::kRepeatedLinear,
&OnReadPixelsDone, &context);
// We don't need to insert a recording since asyncRescaleAndReadPixels is a
// context operation that inserts its own recording internally.
graphite_context->submit(skgpu::graphite::SyncToCpu::kYes);
CHECK(context.finished);
if (context.async_result) {
success = true;
// Use CopyPlane to flip as Graphite doesn't support bottom left origin
// images. Using a negative height causes CopyPlane to flip while copying.
// TODO(crbug.com/40269891): Remove this if Graphite performs the flip
// once it supports bottom left origin images.
const int height =
source_shared_image->surface_origin() == kTopLeft_GrSurfaceOrigin
? dst_info.height()
: -dst_info.height();
libyuv::CopyPlane(
static_cast<const uint8_t*>(context.async_result->data(0)),
context.async_result->rowBytes(0),
static_cast<uint8_t*>(pixel_address), row_bytes,
dst_info.width() * dst_info.bytesPerPixel(), height);
} else {
success = false;
}
}
if (!success) {
return base::unexpected(GLError(GL_INVALID_OPERATION,
"glReadbackImagePixels",
"Failed to read pixels from SkImage"));
}
return base::ok();
}
base::expected<void, GLError> CopySharedImageHelper::WritePixelsYUV(
GLuint src_width,
GLuint src_height,
std::array<SkPixmap, SkYUVAInfo::kMaxPlanes> pixmaps,
std::vector<GrBackendSemaphore> end_semaphores,
std::unique_ptr<SkiaImageRepresentation> dest_shared_image,
std::unique_ptr<SkiaImageRepresentation::ScopedWriteAccess>
dest_scoped_access) {
// Order of destruction for function arguments is not specified, but the
// ScopedWriteAccess must be destroyed before representation; so perform a
// Cleanup before exiting.
absl::Cleanup cleanup = [&]() { dest_scoped_access.reset(); };
viz::SharedImageFormat dest_format = dest_shared_image->format();
auto* gr_context = shared_context_state_->gr_context();
for (int plane = 0; plane < dest_format.NumberOfPlanes(); plane++) {
bool written = false;
if (gr_context) {
written = gr_context->updateBackendTexture(
dest_scoped_access->promise_image_texture(plane)->backendTexture(),
&pixmaps[plane], /*numLevels=*/1, dest_shared_image->surface_origin(),
/*finishedProc=*/nullptr, /*finishedContext=*/nullptr);
} else {
CHECK(shared_context_state_->graphite_context());
written =
shared_context_state_->gpu_main_graphite_recorder()
->updateBackendTexture(
dest_scoped_access->graphite_texture(plane), &pixmaps[plane],
/*numLevels=*/1);
}
if (!written) {
dest_scoped_access->ApplyBackendSurfaceEndState();
shared_context_state_->SubmitIfNecessary(std::move(end_semaphores),
/*need_graphite_submit=*/true);
return base::unexpected(
GLError(GL_INVALID_OPERATION, "glWritePixelsYUV",
"Failed to upload pixels to dest shared image"));
}
}
shared_context_state_->FlushWriteAccess(dest_scoped_access.get());
shared_context_state_->SubmitIfNecessary(std::move(end_semaphores),
/*need_graphite_submit=*/true);
if (!dest_shared_image->IsCleared()) {
dest_shared_image->SetClearedRect(gfx::Rect(src_width, src_height));
}
return base::ok();
}
} // namespace gpu