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
|
// Copyright 2019 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_interface_in_process.h"
#include <optional>
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/synchronization/waitable_event.h"
#include "build/build_config.h"
#include "components/viz/common/resources/shared_image_format_utils.h"
#include "gpu/command_buffer/client/client_shared_image.h"
#include "gpu/command_buffer/common/shared_image_usage.h"
#include "gpu/command_buffer/common/sync_token.h"
#include "gpu/command_buffer/service/command_buffer_task_executor.h"
#include "gpu/command_buffer/service/display_compositor_memory_and_task_controller_on_gpu.h"
#include "gpu/command_buffer/service/gr_shader_cache.h"
#include "gpu/command_buffer/service/shared_image/shared_image_factory.h"
#include "gpu/command_buffer/service/single_task_sequence.h"
#include "gpu/config/gpu_driver_bug_workarounds.h"
#include "gpu/config/gpu_feature_info.h"
#include "gpu/config/gpu_preferences.h"
#include "gpu/ipc/common/gpu_client_ids.h"
#include "third_party/abseil-cpp/absl/cleanup/cleanup.h"
#include "ui/gfx/gpu_fence.h"
#include "ui/gl/gl_context.h"
#include "ui/gl/gl_implementation.h"
namespace gpu {
struct SharedImageInterfaceInProcess::SetUpOnGpuParams {
const GpuPreferences gpu_preferences;
const GpuDriverBugWorkarounds gpu_workarounds;
const GpuFeatureInfo gpu_feature_info;
const raw_ptr<gpu::SharedContextState> context_state;
const raw_ptr<SharedImageManager> shared_image_manager;
const bool is_for_display_compositor;
SetUpOnGpuParams(const GpuPreferences& gpu_preferences,
const GpuDriverBugWorkarounds& gpu_workarounds,
const GpuFeatureInfo& gpu_feature_info,
gpu::SharedContextState* context_state,
SharedImageManager* shared_image_manager,
bool is_for_display_compositor)
: gpu_preferences(gpu_preferences),
gpu_workarounds(gpu_workarounds),
gpu_feature_info(gpu_feature_info),
context_state(context_state),
shared_image_manager(shared_image_manager),
is_for_display_compositor(is_for_display_compositor) {}
~SetUpOnGpuParams() = default;
SetUpOnGpuParams(const SetUpOnGpuParams& other) = delete;
SetUpOnGpuParams& operator=(const SetUpOnGpuParams& other) = delete;
};
SharedImageInterfaceInProcess::SharedImageInterfaceInProcess(
SingleTaskSequence* task_sequence,
DisplayCompositorMemoryAndTaskControllerOnGpu* display_controller)
: SharedImageInterfaceInProcess(
task_sequence,
display_controller->gpu_preferences(),
display_controller->gpu_driver_bug_workarounds(),
display_controller->gpu_feature_info(),
display_controller->shared_context_state(),
display_controller->shared_image_manager(),
/*is_for_display_compositor=*/true) {}
SharedImageInterfaceInProcess::SharedImageInterfaceInProcess(
SingleTaskSequence* task_sequence,
const GpuPreferences& gpu_preferences,
const GpuDriverBugWorkarounds& gpu_workarounds,
const GpuFeatureInfo& gpu_feature_info,
gpu::SharedContextState* context_state,
SharedImageManager* shared_image_manager,
bool is_for_display_compositor,
OwnerThread owner_thread)
: task_sequence_(task_sequence),
command_buffer_id_(
DisplayCompositorMemoryAndTaskControllerOnGpu::NextCommandBufferId()),
shared_image_manager_(shared_image_manager),
owner_thread_(owner_thread) {
DETACH_FROM_SEQUENCE(gpu_sequence_checker_);
auto params = std::make_unique<SetUpOnGpuParams>(
gpu_preferences, gpu_workarounds, gpu_feature_info, context_state,
shared_image_manager, is_for_display_compositor);
if (owner_thread_ == OwnerThread::kCompositor) {
task_sequence_->ScheduleTask(
base::BindOnce(&SharedImageInterfaceInProcess::SetUpOnGpu,
base::Unretained(this), std::move(params)),
/*sync_token_fences=*/{}, SyncToken());
} else {
CHECK_EQ(owner_thread_, OwnerThread::kGpu);
SetUpOnGpu(std::move(params));
}
}
SharedImageInterfaceInProcess::~SharedImageInterfaceInProcess() {
base::WaitableEvent completion(
base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
if (owner_thread_ == OwnerThread::kCompositor) {
task_sequence_->ScheduleTask(
base::BindOnce(&SharedImageInterfaceInProcess::DestroyOnGpu,
base::Unretained(this), &completion),
/*sync_token_fences=*/{}, SyncToken());
} else {
CHECK_EQ(owner_thread_, OwnerThread::kGpu);
DestroyOnGpu(&completion);
}
completion.Wait();
}
const SharedImageCapabilities&
SharedImageInterfaceInProcess::GetCapabilities() {
base::WaitableEvent completion(
base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
if (!shared_image_capabilities_) {
shared_image_capabilities_ = std::make_unique<SharedImageCapabilities>();
task_sequence_->ScheduleTask(
base::BindOnce(&SharedImageInterfaceInProcess::GetCapabilitiesOnGpu,
base::Unretained(this), &completion,
shared_image_capabilities_.get()),
/*sync_token_fences=*/{}, SyncToken());
completion.Wait();
}
return *shared_image_capabilities_;
}
void SharedImageInterfaceInProcess::GetCapabilitiesOnGpu(
base::WaitableEvent* completion,
SharedImageCapabilities* out_capabilities) {
if (!LazyCreateSharedImageFactory()) {
return;
}
DCHECK(shared_image_factory_);
*out_capabilities = shared_image_factory_->MakeCapabilities();
completion->Signal();
}
void SharedImageInterfaceInProcess::SetUpOnGpu(
std::unique_ptr<SetUpOnGpuParams> params) {
DCHECK_CALLED_ON_VALID_SEQUENCE(gpu_sequence_checker_);
context_state_ = params->context_state.get();
create_factory_ = base::BindOnce(
[](std::unique_ptr<SetUpOnGpuParams> params) {
auto* memory_tracker = params->context_state
? params->context_state->memory_tracker()
: nullptr;
auto shared_image_factory = std::make_unique<SharedImageFactory>(
params->gpu_preferences, params->gpu_workarounds,
params->gpu_feature_info, params->context_state,
params->shared_image_manager, memory_tracker,
params->is_for_display_compositor);
return shared_image_factory;
},
std::move(params));
// Make the SharedImageInterface use the same sequence as the command buffer,
// it's necessary for WebView because of the blocking behavior.
// TODO(piman): see if it's worth using a different sequence for non-WebView.
sync_point_client_state_ = task_sequence_->CreateSyncPointClientState(
CommandBufferNamespace::IN_PROCESS, command_buffer_id_);
}
void SharedImageInterfaceInProcess::DestroyOnGpu(
base::WaitableEvent* completion) {
bool have_context = MakeContextCurrent();
if (shared_image_factory_) {
shared_image_factory_->DestroyAllSharedImages(have_context);
shared_image_factory_ = nullptr;
}
sync_point_client_state_.Reset();
context_state_ = nullptr;
completion->Signal();
}
bool SharedImageInterfaceInProcess::MakeContextCurrent(bool needs_gl) {
if (gl::GetGLImplementation() == gl::kGLImplementationDisabled) {
return true;
}
if (!context_state_)
return false;
if (context_state_->context_lost())
return false;
// |shared_image_factory_| never writes to the surface, so skip unnecessary
// MakeCurrent to improve performance. https://crbug.com/457431
auto* context = context_state_->real_context();
if (context->IsCurrent(nullptr))
return !context_state_->CheckResetStatus(needs_gl);
return context_state_->MakeCurrent(/*surface=*/nullptr, needs_gl);
}
bool SharedImageInterfaceInProcess::LazyCreateSharedImageFactory() {
if (shared_image_factory_)
return true;
// Some shared image backing factories will use GL in ctor, so we need GL even
// if chrome is using non-GL backing.
if (!MakeContextCurrent(/*needs_gl=*/true))
return false;
shared_image_factory_ = std::move(create_factory_).Run();
return true;
}
scoped_refptr<ClientSharedImage>
SharedImageInterfaceInProcess::CreateSharedImage(
const SharedImageInfo& si_info,
gpu::SurfaceHandle surface_handle,
std::optional<SharedImagePoolId> pool_id) {
DCHECK(gpu::IsValidClientUsage(si_info.meta.usage));
auto mailbox = Mailbox::Generate();
{
base::AutoLock lock(lock_);
// Note: we enqueue the task under the lock to guarantee monotonicity of
// the release ids as seen by the service. Unretained is safe because
// SharedImageInterfaceInProcess synchronizes with the GPU thread at
// destruction time, cancelling tasks, before |this| is destroyed.
ScheduleGpuTask(
base::BindOnce(
&SharedImageInterfaceInProcess::CreateSharedImageOnGpuThread,
base::Unretained(this), mailbox, si_info, surface_handle),
/*sync_token_fences=*/{}, MakeSyncToken(next_fence_sync_release_++));
}
return base::MakeRefCounted<ClientSharedImage>(
mailbox, si_info, GenUnverifiedSyncToken(), holder_, gfx::EMPTY_BUFFER);
}
void SharedImageInterfaceInProcess::CreateSharedImageOnGpuThread(
const Mailbox& mailbox,
SharedImageInfo si_info,
gpu::SurfaceHandle surface_handle) {
DCHECK_CALLED_ON_VALID_SEQUENCE(gpu_sequence_checker_);
if (!LazyCreateSharedImageFactory())
return;
if (!MakeContextCurrent())
return;
DCHECK(shared_image_factory_);
if (!shared_image_factory_->CreateSharedImage(
mailbox, si_info.meta.format, si_info.meta.size,
si_info.meta.color_space, si_info.meta.surface_origin,
si_info.meta.alpha_type, surface_handle, si_info.meta.usage,
std::string(si_info.debug_label))) {
context_state_->MarkContextLost();
}
}
scoped_refptr<ClientSharedImage>
SharedImageInterfaceInProcess::CreateSharedImage(
const SharedImageInfo& si_info,
base::span<const uint8_t> pixel_data) {
DCHECK(gpu::IsValidClientUsage(si_info.meta.usage));
auto mailbox = Mailbox::Generate();
std::vector<uint8_t> pixel_data_copy(pixel_data.begin(), pixel_data.end());
{
base::AutoLock lock(lock_);
// Note: we enqueue the task under the lock to guarantee monotonicity of
// the release ids as seen by the service. Unretained is safe because
// InProcessCommandBuffer synchronizes with the GPU thread at destruction
// time, cancelling tasks, before |this| is destroyed.
ScheduleGpuTask(base::BindOnce(&SharedImageInterfaceInProcess::
CreateSharedImageWithDataOnGpuThread,
base::Unretained(this), mailbox, si_info,
std::move(pixel_data_copy)),
/*sync_token_fences=*/{},
MakeSyncToken(next_fence_sync_release_++));
}
return base::MakeRefCounted<ClientSharedImage>(
mailbox, si_info, GenUnverifiedSyncToken(), holder_, gfx::EMPTY_BUFFER);
}
void SharedImageInterfaceInProcess::CreateSharedImageWithDataOnGpuThread(
const Mailbox& mailbox,
SharedImageInfo si_info,
std::vector<uint8_t> pixel_data) {
DCHECK_CALLED_ON_VALID_SEQUENCE(gpu_sequence_checker_);
if (!LazyCreateSharedImageFactory())
return;
if (!MakeContextCurrent())
return;
DCHECK(shared_image_factory_);
if (!shared_image_factory_->CreateSharedImage(
mailbox, si_info.meta.format, si_info.meta.size,
si_info.meta.color_space, si_info.meta.surface_origin,
si_info.meta.alpha_type, si_info.meta.usage,
std::move(si_info.debug_label), pixel_data)) {
context_state_->MarkContextLost();
}
}
scoped_refptr<ClientSharedImage>
SharedImageInterfaceInProcess::CreateSharedImage(
const SharedImageInfo& si_info,
SurfaceHandle surface_handle,
gfx::BufferUsage buffer_usage,
std::optional<SharedImagePoolId> pool_id) {
DCHECK(gpu::IsValidClientUsage(si_info.meta.usage));
auto mailbox = Mailbox::Generate();
{
base::AutoLock lock(lock_);
// Note: we enqueue the task under the lock to guarantee monotonicity of
// the release ids as seen by the service. Unretained is safe because
// InProcessCommandBuffer synchronizes with the GPU thread at destruction
// time, cancelling tasks, before |this| is destroyed.
ScheduleGpuTask(
base::BindOnce(&SharedImageInterfaceInProcess::
CreateSharedImageWithBufferUsageOnGpuThread,
base::Unretained(this), mailbox, si_info, surface_handle,
buffer_usage),
/*sync_token_fences=*/{}, MakeSyncToken(next_fence_sync_release_++));
}
auto handle_info = GetGpuMemoryBufferHandleInfo(mailbox);
SharedImageInfo si_info_copy = si_info;
// Clear the external sampler prefs for shared memory case if it is set.
// https://issues.chromium.org/339546249.
if (si_info_copy.meta.format.PrefersExternalSampler() &&
(handle_info.handle.type ==
gfx::GpuMemoryBufferType::SHARED_MEMORY_BUFFER)) {
si_info_copy.meta.format.ClearPrefersExternalSampler();
}
return base::MakeRefCounted<ClientSharedImage>(
mailbox, si_info_copy, GenUnverifiedSyncToken(), std::move(handle_info),
holder_);
}
void SharedImageInterfaceInProcess::CreateSharedImageWithBufferUsageOnGpuThread(
const Mailbox& mailbox,
SharedImageInfo si_info,
SurfaceHandle surface_handle,
gfx::BufferUsage buffer_usage) {
DCHECK_CALLED_ON_VALID_SEQUENCE(gpu_sequence_checker_);
if (!LazyCreateSharedImageFactory()) {
return;
}
if (!MakeContextCurrent()) {
return;
}
DCHECK(shared_image_factory_);
// Note that SharedImageInterfaceInProcess implementation here uses
// SharedImageFactory::CreateSharedImage() to create a shared image backed by
// native buffer/shared memory in GPU process. This is different
// implementation and code path compared to ClientSharedImage implementation
// which creates native buffer/shared memory on IO thread and then creates a
// mailbox from it on GPU thread.
if (!shared_image_factory_->CreateSharedImage(
mailbox, si_info.meta.format, si_info.meta.size,
si_info.meta.color_space, si_info.meta.surface_origin,
si_info.meta.alpha_type, surface_handle, si_info.meta.usage,
std::move(si_info.debug_label), buffer_usage)) {
context_state_->MarkContextLost();
}
}
GpuMemoryBufferHandleInfo
SharedImageInterfaceInProcess::GetGpuMemoryBufferHandleInfo(
const Mailbox& mailbox) {
base::WaitableEvent completion(
base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
gfx::GpuMemoryBufferHandle handle;
viz::SharedImageFormat format;
gfx::Size size;
gfx::BufferUsage buffer_usage;
task_sequence_->ScheduleTask(
base::BindOnce(&SharedImageInterfaceInProcess::
GetGpuMemoryBufferHandleInfoOnGpuThread,
base::Unretained(this), mailbox, &handle, &format, &size,
&buffer_usage, &completion),
/*sync_token_fences=*/{}, SyncToken());
completion.Wait();
return GpuMemoryBufferHandleInfo(std::move(handle), format, size,
buffer_usage);
}
void SharedImageInterfaceInProcess::GetGpuMemoryBufferHandleInfoOnGpuThread(
const Mailbox& mailbox,
gfx::GpuMemoryBufferHandle* handle,
viz::SharedImageFormat* format,
gfx::Size* size,
gfx::BufferUsage* buffer_usage,
base::WaitableEvent* completion) {
absl::Cleanup completion_runner = [completion] { completion->Signal(); };
DCHECK(shared_image_factory_);
// Note that we are not making |context_state_| current here as of now since
// it is not needed to get the handle from the backings. Make context current
// if we find that it is required.
if (!shared_image_factory_->GetGpuMemoryBufferHandleInfo(
mailbox, *handle, *format, *size, *buffer_usage)) {
LOG(ERROR)
<< "SharedImageInterfaceInProcess: Unable to get GpuMemoryBufferHandle";
}
}
scoped_refptr<ClientSharedImage>
SharedImageInterfaceInProcess::CreateSharedImage(
const SharedImageInfo& si_info,
gpu::SurfaceHandle surface_handle,
gfx::BufferUsage buffer_usage,
gfx::GpuMemoryBufferHandle buffer_handle) {
DCHECK(gpu::IsValidClientUsage(si_info.meta.usage));
#if BUILDFLAG(IS_APPLE) || BUILDFLAG(IS_WIN)
CHECK(!si_info.meta.format.PrefersExternalSampler());
#endif
auto client_buffer_handle = buffer_handle.Clone();
auto mailbox = Mailbox::Generate();
{
base::AutoLock lock(lock_);
SyncToken sync_token = MakeSyncToken(next_fence_sync_release_++);
// Note: we enqueue the task under the lock to guarantee monotonicity of
// the release ids as seen by the service. Unretained is safe because
// InProcessCommandBuffer synchronizes with the GPU thread at destruction
// time, cancelling tasks, before |this| is destroyed.
ScheduleGpuTask(base::BindOnce(&SharedImageInterfaceInProcess::
CreateSharedImageWithBufferOnGpuThread,
base::Unretained(this), mailbox, si_info,
std::move(buffer_handle)),
/*sync_token_fences=*/{}, sync_token);
}
return base::MakeRefCounted<ClientSharedImage>(
mailbox, si_info, GenUnverifiedSyncToken(),
GpuMemoryBufferHandleInfo(std::move(client_buffer_handle),
si_info.meta.format, si_info.meta.size,
buffer_usage),
holder_);
}
scoped_refptr<ClientSharedImage>
SharedImageInterfaceInProcess::CreateSharedImage(
const SharedImageInfo& si_info,
gfx::GpuMemoryBufferHandle buffer_handle) {
DCHECK(gpu::IsValidClientUsage(si_info.meta.usage));
#if BUILDFLAG(IS_APPLE) || BUILDFLAG(IS_WIN)
CHECK(!si_info.meta.format.PrefersExternalSampler());
#endif
auto mailbox = Mailbox::Generate();
auto gmb_type = buffer_handle.type;
{
base::AutoLock lock(lock_);
SyncToken sync_token = MakeSyncToken(next_fence_sync_release_++);
// Note: we enqueue the task under the lock to guarantee monotonicity of
// the release ids as seen by the service. Unretained is safe because
// InProcessCommandBuffer synchronizes with the GPU thread at destruction
// time, cancelling tasks, before |this| is destroyed.
ScheduleGpuTask(base::BindOnce(&SharedImageInterfaceInProcess::
CreateSharedImageWithBufferOnGpuThread,
base::Unretained(this), mailbox, si_info,
std::move(buffer_handle)),
/*sync_token_fences=*/{}, sync_token);
}
return base::MakeRefCounted<ClientSharedImage>(
mailbox, si_info, GenUnverifiedSyncToken(), holder_, gmb_type);
}
scoped_refptr<ClientSharedImage>
SharedImageInterfaceInProcess::CreateSharedImageForMLTensor(
std::string debug_label,
viz::SharedImageFormat format,
const gfx::Size& size,
gpu::SharedImageUsageSet usage) {
NOTREACHED();
}
scoped_refptr<ClientSharedImage>
SharedImageInterfaceInProcess::CreateSharedImageForSoftwareCompositor(
const SharedImageInfo& si_info) {
base::WritableSharedMemoryMapping mapping;
gfx::GpuMemoryBufferHandle handle;
CreateSharedMemoryRegionFromSIInfo(si_info, mapping, handle);
auto mailbox = Mailbox::Generate();
{
base::AutoLock lock(lock_);
SyncToken sync_token = MakeSyncToken(next_fence_sync_release_++);
// Note: we enqueue the task under the lock to guarantee monotonicity of
// the release ids as seen by the service. Unretained is safe because
// InProcessCommandBuffer synchronizes with the GPU thread at destruction
// time, cancelling tasks, before |this| is destroyed.
ScheduleGpuTask(base::BindOnce(&SharedImageInterfaceInProcess::
CreateSharedImageWithBufferOnGpuThread,
base::Unretained(this), mailbox, si_info,
std::move(handle)),
/*sync_token_fences=*/{}, sync_token);
}
return base::MakeRefCounted<ClientSharedImage>(
mailbox, si_info, GenUnverifiedSyncToken(), holder_, std::move(mapping));
}
void SharedImageInterfaceInProcess::CreateSharedImageWithBufferOnGpuThread(
const Mailbox& mailbox,
SharedImageInfo si_info,
gfx::GpuMemoryBufferHandle buffer_handle) {
DCHECK_CALLED_ON_VALID_SEQUENCE(gpu_sequence_checker_);
if (!LazyCreateSharedImageFactory()) {
return;
}
if (!MakeContextCurrent()) {
return;
}
DCHECK(shared_image_factory_);
if (!shared_image_factory_->CreateSharedImage(
mailbox, si_info.meta.format, si_info.meta.size,
si_info.meta.color_space, si_info.meta.surface_origin,
si_info.meta.alpha_type, si_info.meta.usage,
std::move(si_info.debug_label), std::move(buffer_handle))) {
context_state_->MarkContextLost();
}
}
SharedImageInterface::SwapChainSharedImages
SharedImageInterfaceInProcess::CreateSwapChain(
viz::SharedImageFormat format,
const gfx::Size& size,
const gfx::ColorSpace& color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
gpu::SharedImageUsageSet usage,
std::string_view debug_label) {
NOTREACHED();
}
void SharedImageInterfaceInProcess::PresentSwapChain(
const SyncToken& sync_token,
const Mailbox& mailbox) {
NOTREACHED();
}
#if BUILDFLAG(IS_FUCHSIA)
void SharedImageInterfaceInProcess::RegisterSysmemBufferCollection(
zx::eventpair service_handle,
zx::channel sysmem_token,
const viz::SharedImageFormat& format,
gfx::BufferUsage usage,
bool register_with_image_pipe) {
NOTREACHED();
}
#endif // BUILDFLAG(IS_FUCHSIA)
void SharedImageInterfaceInProcess::UpdateSharedImage(
const SyncToken& sync_token,
const Mailbox& mailbox) {
UpdateSharedImage(sync_token, nullptr, mailbox);
}
void SharedImageInterfaceInProcess::UpdateSharedImage(
const SyncToken& sync_token,
std::unique_ptr<gfx::GpuFence> acquire_fence,
const Mailbox& mailbox) {
DCHECK(!acquire_fence);
base::AutoLock lock(lock_);
// Note: we enqueue the task under the lock to guarantee monotonicity of
// the release ids as seen by the service. Unretained is safe because
// InProcessCommandBuffer synchronizes with the GPU thread at destruction
// time, cancelling tasks, before |this| is destroyed.
ScheduleGpuTask(
base::BindOnce(
&SharedImageInterfaceInProcess::UpdateSharedImageOnGpuThread,
base::Unretained(this), mailbox),
/*sync_token_fences=*/{sync_token},
MakeSyncToken(next_fence_sync_release_++));
}
void SharedImageInterfaceInProcess::UpdateSharedImageOnGpuThread(
const Mailbox& mailbox) {
DCHECK_CALLED_ON_VALID_SEQUENCE(gpu_sequence_checker_);
if (!MakeContextCurrent())
return;
if (!shared_image_factory_ ||
!shared_image_factory_->UpdateSharedImage(mailbox)) {
context_state_->MarkContextLost();
}
}
void SharedImageInterfaceInProcess::DestroySharedImage(
const SyncToken& sync_token,
const Mailbox& mailbox) {
// Use sync token dependency to ensure that the destroy task does not run
// before sync token is released.
ScheduleGpuTask(
base::BindOnce(
&SharedImageInterfaceInProcess::DestroySharedImageOnGpuThread,
base::Unretained(this), mailbox),
/*sync_token_fences=*/{sync_token}, SyncToken());
}
void SharedImageInterfaceInProcess::DestroySharedImage(
const SyncToken& sync_token,
scoped_refptr<ClientSharedImage> client_shared_image) {
CHECK(client_shared_image->HasOneRef());
client_shared_image->UpdateDestructionSyncToken(sync_token);
}
void SharedImageInterfaceInProcess::DestroySharedImageOnGpuThread(
const Mailbox& mailbox) {
DCHECK_CALLED_ON_VALID_SEQUENCE(gpu_sequence_checker_);
if (!MakeContextCurrent())
return;
if (!shared_image_factory_ ||
!shared_image_factory_->DestroySharedImage(mailbox)) {
context_state_->MarkContextLost();
}
}
SyncToken SharedImageInterfaceInProcess::GenUnverifiedSyncToken() {
base::AutoLock lock(lock_);
return MakeSyncToken(next_fence_sync_release_ - 1);
}
SyncToken SharedImageInterfaceInProcess::GenVerifiedSyncToken() {
base::AutoLock lock(lock_);
SyncToken sync_token = MakeSyncToken(next_fence_sync_release_ - 1);
VerifySyncToken(sync_token);
return sync_token;
}
void SharedImageInterfaceInProcess::VerifySyncToken(SyncToken& sync_token) {
sync_token.SetVerifyFlush();
}
void SharedImageInterfaceInProcess::WaitSyncToken(const SyncToken& sync_token) {
base::AutoLock lock(lock_);
ScheduleGpuTask(base::DoNothing(),
/*sync_token_fences=*/{sync_token},
MakeSyncToken(next_fence_sync_release_++));
}
void SharedImageInterfaceInProcess::ScheduleGpuTask(
base::OnceClosure task,
std::vector<SyncToken> sync_token_fences,
const SyncToken& release) {
task_sequence_->ScheduleTask(std::move(task), std::move(sync_token_fences),
release);
}
scoped_refptr<ClientSharedImage>
SharedImageInterfaceInProcess::ImportSharedImage(
ExportedSharedImage exported_shared_image) {
// Secondary references are required only by client processes, so it shouldn't
// be reachable here.
NOTREACHED();
}
} // namespace gpu
|