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
cc / raster / one_copy_raster_buffer_provider.cc [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/raster/one_copy_raster_buffer_provider.h"
#include <stdint.h>
#include <algorithm>
#include <limits>
#include <utility>
#include "base/debug/alias.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/histogram_macros.h"
#include "base/task/sequenced_task_runner.h"
#include "base/trace_event/process_memory_dump.h"
#include "base/trace_event/trace_event.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "cc/base/features.h"
#include "cc/base/histograms.h"
#include "cc/base/math_util.h"
#include "components/viz/common/gpu/raster_context_provider.h"
#include "components/viz/common/resources/platform_color.h"
#include "components/viz/common/resources/resource_sizes.h"
#include "components/viz/common/resources/shared_image_format.h"
#include "components/viz/common/resources/shared_image_format_utils.h"
#include "gpu/GLES2/gl2extchromium.h"
#include "gpu/command_buffer/client/client_shared_image.h"
#include "gpu/command_buffer/client/context_support.h"
#include "gpu/command_buffer/client/raster_interface.h"
#include "gpu/command_buffer/client/shared_image_interface.h"
#include "gpu/command_buffer/common/shared_image_trace_utils.h"
#include "gpu/command_buffer/common/shared_image_usage.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/buffer_format_util.h"
#include "ui/gl/trace_util.h"
namespace cc {
namespace {
// 4MiB is the size of 4 512x512 tiles, which has proven to be a good
// default batch size for copy operations.
const int kMaxBytesPerCopyOperation = 1024 * 1024 * 4;
} // namespace
// Subclass for InUsePoolResource that holds ownership of a one-copy backing
// and does cleanup of the backing when destroyed.
class OneCopyRasterBufferProvider::OneCopyGpuBacking
: public ResourcePool::GpuBacking {
public:
~OneCopyGpuBacking() override {
if (!shared_image) {
return;
}
auto* sii = worker_context_provider->SharedImageInterface();
if (returned_sync_token.HasData())
sii->DestroySharedImage(returned_sync_token, std::move(shared_image));
else if (mailbox_sync_token.HasData())
sii->DestroySharedImage(mailbox_sync_token, std::move(shared_image));
}
void OnMemoryDump(
base::trace_event::ProcessMemoryDump* pmd,
const base::trace_event::MemoryAllocatorDumpGuid& buffer_dump_guid,
uint64_t tracing_process_id,
int importance) const override {
if (!shared_image) {
return;
}
auto tracing_guid = shared_image->GetGUIDForTracing();
pmd->CreateSharedGlobalAllocatorDump(tracing_guid);
pmd->AddOwnershipEdge(buffer_dump_guid, tracing_guid, importance);
}
// The context used to clean up the mailbox
raw_ptr<viz::RasterContextProvider> worker_context_provider = nullptr;
};
OneCopyRasterBufferProvider::RasterBufferImpl::RasterBufferImpl(
OneCopyRasterBufferProvider* client,
const ResourcePool::InUsePoolResource& in_use_resource,
OneCopyGpuBacking* backing,
uint64_t previous_content_id)
: client_(client),
backing_(backing),
resource_size_(in_use_resource.size()),
format_(in_use_resource.format()),
color_space_(in_use_resource.color_space()),
previous_content_id_(previous_content_id),
before_raster_sync_token_(backing->returned_sync_token),
shared_image_(backing->shared_image),
mailbox_texture_is_overlay_candidate_(backing->overlay_candidate) {}
OneCopyRasterBufferProvider::RasterBufferImpl::~RasterBufferImpl() {
// This SyncToken was created on the worker context after uploading the
// texture content.
backing_->mailbox_sync_token = after_raster_sync_token_;
if (after_raster_sync_token_.HasData()) {
// The returned SyncToken was waited on in Playback. We know Playback
// happened if the |after_raster_sync_token_| was set.
backing_->returned_sync_token = gpu::SyncToken();
}
backing_->shared_image = std::move(shared_image_);
if (should_destroy_shared_image_ && backing_->shared_image) {
backing_->worker_context_provider->SharedImageInterface()
->DestroySharedImage(before_raster_sync_token_,
std::move(backing_->shared_image));
}
}
void OneCopyRasterBufferProvider::RasterBufferImpl::Playback(
const RasterSource* raster_source,
const gfx::Rect& raster_full_rect,
const gfx::Rect& raster_dirty_rect,
uint64_t new_content_id,
const gfx::AxisTransform2d& transform,
const RasterSource::PlaybackSettings& playback_settings,
const GURL& url) {
TRACE_EVENT0("cc", "OneCopyRasterBuffer::Playback");
// The |before_raster_sync_token_| passed in here was created on the
// compositor thread, or given back with the texture for reuse. This call
// returns another SyncToken generated on the worker thread to synchronize
// with after the raster is complete.
after_raster_sync_token_ = client_->PlaybackAndCopyOnWorkerThread(
shared_image_, mailbox_texture_is_overlay_candidate_,
before_raster_sync_token_, raster_source, raster_full_rect,
raster_dirty_rect, transform, resource_size_, format_, color_space_,
playback_settings, previous_content_id_, new_content_id,
should_destroy_shared_image_);
}
bool OneCopyRasterBufferProvider::RasterBufferImpl::
SupportsBackgroundThreadPriority() const {
// Playback() should not run at background thread priority because it acquires
// the GpuChannelHost lock, which is acquired at normal thread priority by
// other code. Acquiring it at background thread priority can cause a priority
// inversion. https://crbug.com/1072756
return false;
}
OneCopyRasterBufferProvider::OneCopyRasterBufferProvider(
scoped_refptr<base::SequencedTaskRunner> task_runner,
viz::RasterContextProvider* compositor_context_provider,
viz::RasterContextProvider* worker_context_provider,
int max_copy_texture_chromium_size,
bool use_partial_raster,
int max_staging_buffer_usage_in_bytes,
const RasterCapabilities& raster_caps)
: compositor_context_provider_(compositor_context_provider),
worker_context_provider_(worker_context_provider),
max_bytes_per_copy_operation_(
max_copy_texture_chromium_size
? std::min(kMaxBytesPerCopyOperation,
max_copy_texture_chromium_size)
: kMaxBytesPerCopyOperation),
use_partial_raster_(use_partial_raster),
bytes_scheduled_since_last_flush_(0),
tile_format_(raster_caps.tile_format),
tile_overlay_candidate_(raster_caps.tile_overlay_candidate),
staging_pool_(std::move(task_runner),
worker_context_provider,
use_partial_raster,
max_staging_buffer_usage_in_bytes) {
DCHECK(compositor_context_provider);
DCHECK(worker_context_provider);
DCHECK(!tile_format_.IsCompressed());
}
OneCopyRasterBufferProvider::~OneCopyRasterBufferProvider() = default;
std::unique_ptr<RasterBuffer>
OneCopyRasterBufferProvider::AcquireBufferForRaster(
const ResourcePool::InUsePoolResource& resource,
uint64_t resource_content_id,
uint64_t previous_content_id,
bool depends_on_at_raster_decodes,
bool depends_on_hardware_accelerated_jpeg_candidates,
bool depends_on_hardware_accelerated_webp_candidates) {
if (!resource.gpu_backing()) {
auto backing = std::make_unique<OneCopyGpuBacking>();
backing->worker_context_provider = worker_context_provider_;
backing->overlay_candidate = tile_overlay_candidate_;
resource.set_gpu_backing(std::move(backing));
}
OneCopyGpuBacking* backing =
static_cast<OneCopyGpuBacking*>(resource.gpu_backing());
// TODO(danakj): If resource_content_id != 0, we only need to copy/upload
// the dirty rect.
return std::make_unique<RasterBufferImpl>(this, resource, backing,
previous_content_id);
}
void OneCopyRasterBufferProvider::Flush() {
// This flush on the compositor context flushes queued work on all contexts,
// including the raster worker. Tile raster inserted a SyncToken which is
// waited for in order to tell if a tile is ready for draw, but a flush
// is needed to ensure the work is sent for those queries to get the right
// answer.
compositor_context_provider_->ContextSupport()->FlushPendingWork();
}
viz::SharedImageFormat OneCopyRasterBufferProvider::GetFormat() const {
return tile_format_;
}
bool OneCopyRasterBufferProvider::IsResourcePremultiplied() const {
// TODO(ericrk): Handle unpremultiply/dither in one-copy case as well.
// https://crbug.com/789153
return true;
}
bool OneCopyRasterBufferProvider::CanPartialRasterIntoProvidedResource() const {
// While OneCopyRasterBufferProvider has an internal partial raster
// implementation, it cannot directly partial raster into the externally
// owned resource provided in AcquireBufferForRaster.
return false;
}
bool OneCopyRasterBufferProvider::IsResourceReadyToDraw(
const ResourcePool::InUsePoolResource& resource) {
FlushIfNeeded();
const gpu::SyncToken& sync_token = resource.gpu_backing()->mailbox_sync_token;
// This SyncToken() should have been set by calling OrderingBarrier() before
// calling this.
DCHECK(sync_token.HasData());
// IsSyncTokenSignaled is thread-safe, no need for worker context lock.
return worker_context_provider_->ContextSupport()->IsSyncTokenSignaled(
sync_token);
}
uint64_t OneCopyRasterBufferProvider::SetReadyToDrawCallback(
const std::vector<const ResourcePool::InUsePoolResource*>& resources,
base::OnceClosure callback,
uint64_t pending_callback_id) {
FlushIfNeeded();
gpu::SyncToken latest_sync_token;
for (const auto* in_use : resources) {
const gpu::SyncToken& sync_token =
in_use->gpu_backing()->mailbox_sync_token;
if (sync_token.release_count() > latest_sync_token.release_count())
latest_sync_token = sync_token;
}
uint64_t callback_id = latest_sync_token.release_count();
DCHECK_NE(callback_id, 0u);
// If the callback is different from the one the caller is already waiting on,
// pass the callback through to SignalSyncToken. Otherwise the request is
// redundant.
if (callback_id != pending_callback_id) {
// Use the compositor context because we want this callback on the
// compositor thread.
compositor_context_provider_->ContextSupport()->SignalSyncToken(
latest_sync_token, std::move(callback));
}
return callback_id;
}
void OneCopyRasterBufferProvider::SetShutdownEvent(
base::WaitableEvent* shutdown_event) {
shutdown_event_ = shutdown_event;
}
void OneCopyRasterBufferProvider::Shutdown() {
staging_pool_.Shutdown();
}
gpu::SyncToken OneCopyRasterBufferProvider::PlaybackAndCopyOnWorkerThread(
scoped_refptr<gpu::ClientSharedImage>& shared_image,
bool mailbox_texture_is_overlay_candidate,
const gpu::SyncToken& sync_token,
const RasterSource* raster_source,
const gfx::Rect& raster_full_rect,
const gfx::Rect& raster_dirty_rect,
const gfx::AxisTransform2d& transform,
const gfx::Size& resource_size,
viz::SharedImageFormat format,
const gfx::ColorSpace& color_space,
const RasterSource::PlaybackSettings& playback_settings,
uint64_t previous_content_id,
uint64_t new_content_id,
bool& should_destroy_shared_image) {
std::unique_ptr<StagingBuffer> staging_buffer =
staging_pool_.AcquireStagingBuffer(resource_size, format,
previous_content_id);
DCHECK(staging_buffer->size.width() >= raster_full_rect.width() &&
staging_buffer->size.height() >= raster_full_rect.height());
bool put_data_in_staging_buffer = PlaybackToStagingBuffer(
staging_buffer.get(), raster_source, raster_full_rect, raster_dirty_rect,
transform, format, color_space, playback_settings, previous_content_id,
new_content_id);
gpu::SyncToken sync_token_after_upload;
if (put_data_in_staging_buffer) {
sync_token_after_upload = CopyOnWorkerThread(
staging_buffer.get(), raster_source, raster_full_rect, format,
resource_size, shared_image, mailbox_texture_is_overlay_candidate,
sync_token, color_space);
} else if (shared_image) {
// If we failed to put data in the staging buffer
// (https://crbug.com/554541), then we don't have anything to give to copy
// into the resource. We report a zero mailbox that will result in
// checkerboarding, and be treated as OOM which should retry.
should_destroy_shared_image = true;
}
staging_pool_.ReleaseStagingBuffer(std::move(staging_buffer));
return sync_token_after_upload;
}
bool OneCopyRasterBufferProvider::PlaybackToStagingBuffer(
StagingBuffer* staging_buffer,
const RasterSource* raster_source,
const gfx::Rect& raster_full_rect,
const gfx::Rect& raster_dirty_rect,
const gfx::AxisTransform2d& transform,
viz::SharedImageFormat format,
const gfx::ColorSpace& dst_color_space,
const RasterSource::PlaybackSettings& playback_settings,
uint64_t previous_content_id,
uint64_t new_content_id) {
gfx::Rect playback_rect = raster_full_rect;
if (use_partial_raster_ && previous_content_id) {
// Reduce playback rect to dirty region if the content id of the staging
// buffer matches the previous content id.
if (previous_content_id == staging_buffer->content_id) {
playback_rect.Intersect(raster_dirty_rect);
}
}
DCHECK(!playback_rect.IsEmpty())
<< "Why are we rastering a tile that's not dirty?";
// Allocate mappable SharedImage if necessary.
if (!staging_buffer->client_shared_image) {
auto* sii = worker_context_provider_->SharedImageInterface();
staging_buffer->client_shared_image = sii->CreateSharedImage(
{format, staging_buffer->size, dst_color_space,
gpu::SHARED_IMAGE_USAGE_CPU_WRITE_ONLY, "OneCopyRasterStaging"},
gpu::kNullSurfaceHandle, gfx::BufferUsage::GPU_READ_CPU_READ_WRITE);
if (!staging_buffer->client_shared_image) {
LOG(ERROR) << "Creation of StagingBuffer's SharedImage failed.";
return false;
}
}
auto mapping = staging_buffer->client_shared_image->Map();
if (!mapping) {
LOG(ERROR) << "MapSharedImage Failed.";
return false;
}
staging_buffer->is_shared_memory = mapping->IsSharedMemory();
RasterBufferProvider::PlaybackToMemory(
mapping->GetMemoryForPlane(0).data(), format, staging_buffer->size,
mapping->Stride(0), raster_source, raster_full_rect, playback_rect,
transform, dst_color_space,
/*gpu_compositing=*/true, playback_settings);
staging_buffer->content_id = new_content_id;
return true;
}
gpu::SyncToken OneCopyRasterBufferProvider::CopyOnWorkerThread(
StagingBuffer* staging_buffer,
const RasterSource* raster_source,
const gfx::Rect& rect_to_copy,
viz::SharedImageFormat format,
const gfx::Size& resource_size,
scoped_refptr<gpu::ClientSharedImage>& shared_image,
bool mailbox_texture_is_overlay_candidate,
const gpu::SyncToken& sync_token,
const gfx::ColorSpace& color_space) {
auto* sii = worker_context_provider_->SharedImageInterface();
DCHECK(sii);
CHECK(staging_buffer->client_shared_image);
bool needs_clear = false;
if (!shared_image) {
// This SharedImage will have the contents of raster operations copied into
// it via the raster interface before being sent off to the display
// compositor.
gpu::SharedImageUsageSet usage = gpu::SHARED_IMAGE_USAGE_DISPLAY_READ |
gpu::SHARED_IMAGE_USAGE_RASTER_WRITE;
if (mailbox_texture_is_overlay_candidate)
usage |= gpu::SHARED_IMAGE_USAGE_SCANOUT;
shared_image = sii->CreateSharedImage(
{format, resource_size, color_space, usage, "OneCopyRasterTile"},
gpu::kNullSurfaceHandle);
CHECK(shared_image);
// Clear the resource if we're not going to initialize it fully from the
// copy due to non-exact resource reuse. See https://crbug.com/1313091
needs_clear = rect_to_copy.size() != resource_size;
}
sii->UpdateSharedImage(staging_buffer->sync_token,
staging_buffer->client_shared_image->mailbox());
viz::RasterContextProvider::ScopedRasterContextLock scoped_context(
worker_context_provider_);
gpu::raster::RasterInterface* ri = scoped_context.RasterInterface();
DCHECK(ri);
ri->WaitSyncTokenCHROMIUM(sync_token.GetConstData());
ri->WaitSyncTokenCHROMIUM(sii->GenUnverifiedSyncToken().GetConstData());
// Do not use queries unless COMMANDS_COMPLETED queries are supported, or
// COMMANDS_ISSUED queries are sufficient.
GLenum query_target = GL_NONE;
if (worker_context_provider_->ContextCapabilities().sync_query) {
// Use GL_COMMANDS_COMPLETED_CHROMIUM when supported because native
// GpuMemoryBuffers can be accessed by the GPU after commands are issued
// until GPU reads are done.
query_target = GL_COMMANDS_COMPLETED_CHROMIUM;
}
// COMMANDS_ISSUED is sufficient for shared memory resources.
if (staging_buffer->is_shared_memory) {
query_target = GL_COMMANDS_ISSUED_CHROMIUM;
}
if (query_target != GL_NONE) {
if (!staging_buffer->query_id)
ri->GenQueriesEXT(1, &staging_buffer->query_id);
ri->BeginQueryEXT(query_target, staging_buffer->query_id);
}
uint32_t texture_target = shared_image->GetTextureTarget();
// Clear to ensure the resource is fully initialized and BeginAccess succeeds.
if (needs_clear) {
int clear_bytes_per_row = viz::ResourceSizes::UncheckedWidthInBytes<int>(
resource_size.width(), format);
SkImageInfo dst_info = SkImageInfo::MakeN32Premul(resource_size.width(),
resource_size.height());
SkBitmap bitmap;
if (bitmap.tryAllocPixels(dst_info, clear_bytes_per_row)) {
// SkBitmap.cpp doesn't yet have an interface for SkColor4fs
// https://bugs.chromium.org/p/skia/issues/detail?id=13329
bitmap.eraseColor(raster_source->background_color().toSkColor());
ri->WritePixels(shared_image->mailbox(), /*dst_x_offset=*/0,
/*dst_y_offset=*/0, texture_target, bitmap.pixmap());
}
}
if (base::FeatureList::IsEnabled(features::kNonBatchedCopySharedImage)) {
ri->CopySharedImage(staging_buffer->client_shared_image->mailbox(),
shared_image->mailbox(), 0, 0, 0, 0,
rect_to_copy.width(), rect_to_copy.height());
} else {
int bytes_per_row = viz::ResourceSizes::UncheckedWidthInBytes<int>(
rect_to_copy.width(), staging_buffer->format);
int chunk_size_in_rows =
std::max(1, max_bytes_per_copy_operation_ / bytes_per_row);
// Align chunk size to 4. Required to support compressed texture formats.
chunk_size_in_rows = MathUtil::UncheckedRoundUp(chunk_size_in_rows, 4);
int y = 0;
int height = rect_to_copy.height();
while (y < height) {
// Copy at most |chunk_size_in_rows|.
int rows_to_copy = std::min(chunk_size_in_rows, height - y);
DCHECK_GT(rows_to_copy, 0);
ri->CopySharedImage(staging_buffer->client_shared_image->mailbox(),
shared_image->mailbox(), 0, y, 0, y,
rect_to_copy.width(), rows_to_copy);
y += rows_to_copy;
// Increment |bytes_scheduled_since_last_flush_| by the amount of memory
// used for this copy operation.
bytes_scheduled_since_last_flush_ += rows_to_copy * bytes_per_row;
if (bytes_scheduled_since_last_flush_ >= max_bytes_per_copy_operation_) {
ri->ShallowFlushCHROMIUM();
bytes_scheduled_since_last_flush_ = 0;
}
}
}
if (query_target != GL_NONE)
ri->EndQueryEXT(query_target);
// Generate sync token on the worker context that will be sent to and waited
// for by the display compositor before using the content generated here.
// The same sync token is used to synchronize operations on the staging
// buffer. Note, the query completion is generally enough to guarantee
// ordering, but there are some paths (e.g.
// StagingBufferPool::ReduceMemoryUsage) that may destroy the staging buffer
// without waiting for the query completion.
gpu::SyncToken out_sync_token =
viz::ClientResourceProvider::GenerateSyncTokenHelper(ri);
staging_buffer->sync_token = out_sync_token;
return out_sync_token;
}
} // namespace cc