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
|
// 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 "components/viz/host/gpu_host_impl.h"
#include <utility>
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/metrics/histogram_macros.h"
#include "base/no_destructor.h"
#include "base/process/process_handle.h"
#include "base/strings/strcat.h"
#include "base/system/sys_info.h"
#include "base/task/sequenced_task_runner.h"
#include "base/threading/thread_checker.h"
#include "base/trace_event/trace_event.h"
#include "base/values.h"
#include "build/build_config.h"
#include "components/viz/common/buildflags.h"
#include "components/viz/common/features.h"
#include "gpu/config/gpu_driver_bug_workaround_type.h"
#include "gpu/config/gpu_feature_info.h"
#include "gpu/config/gpu_finch_features.h"
#include "gpu/config/gpu_info.h"
#include "gpu/ipc/common/gpu_client_ids.h"
#include "gpu/ipc/host/gpu_disk_cache.h"
#include "mojo/public/cpp/bindings/sync_call_restrictions.h"
#include "ui/gfx/font_render_params.h"
#if BUILDFLAG(IS_ANDROID)
#include "base/android/build_info.h"
#endif
#if BUILDFLAG(IS_WIN)
#include "ui/gfx/win/rendering_window_manager.h"
#elif BUILDFLAG(IS_MAC)
#include "ui/accelerated_widget_mac/window_resize_helper_mac.h"
#endif
#if BUILDFLAG(IS_OZONE)
#include "ui/ozone/public/gpu_platform_support_host.h"
#include "ui/ozone/public/ozone_platform.h"
#endif
namespace viz {
namespace {
// A wrapper around gfx::FontRenderParams that checks it is set and accessed on
// the same thread.
class FontRenderParams {
public:
FontRenderParams(const FontRenderParams&) = delete;
FontRenderParams& operator=(const FontRenderParams&) = delete;
void Set(const gfx::FontRenderParams& params) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
params_ = params;
if (gpu_host_impl_) {
gpu_host_impl_->MaybeSendFontRenderParams();
}
}
const std::optional<gfx::FontRenderParams>& Get() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return params_;
}
void SetGpuHostImpl(GpuHostImpl* gpu_host_impl) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
gpu_host_impl_ = gpu_host_impl;
}
private:
friend class base::NoDestructor<FontRenderParams>;
FontRenderParams() = default;
~FontRenderParams() { NOTREACHED(); }
THREAD_CHECKER(thread_checker_);
std::optional<gfx::FontRenderParams> params_;
raw_ptr<GpuHostImpl> gpu_host_impl_ = nullptr;
};
FontRenderParams& GetFontRenderParams() {
static base::NoDestructor<FontRenderParams> instance;
return *instance;
}
} // namespace
GpuHostImpl::InitParams::InitParams() = default;
GpuHostImpl::InitParams::InitParams(InitParams&&) = default;
GpuHostImpl::InitParams::~InitParams() = default;
GpuHostImpl::GpuHostImpl(Delegate* delegate,
mojo::PendingRemote<mojom::VizMain> viz_main,
InitParams params)
: delegate_(delegate),
viz_main_(std::move(viz_main)),
params_(std::move(params)) {
// Create a special GPU info collection service if the GPU process is used for
// info collection only.
#if BUILDFLAG(IS_WIN)
if (params_.info_collection_gpu_process) {
viz_main_->CreateInfoCollectionGpuService(
info_collection_gpu_service_remote_.BindNewPipeAndPassReceiver());
return;
}
#endif
DCHECK(delegate_);
mojo::PendingRemote<discardable_memory::mojom::DiscardableSharedMemoryManager>
discardable_manager_remote;
delegate_->BindDiscardableMemoryReceiver(
discardable_manager_remote.InitWithNewPipeAndPassReceiver());
scoped_refptr<base::SequencedTaskRunner> task_runner = nullptr;
#if BUILDFLAG(IS_MAC)
if (params_.main_thread_task_runner->BelongsToCurrentThread())
task_runner = ui::WindowResizeHelperMac::Get()->task_runner();
#endif
#if BUILDFLAG(IS_ANDROID)
viz_main_->SetHostProcessId(base::GetCurrentProcId());
#endif
mojom::GpuServiceCreationParamsPtr gpu_service_params =
mojom::GpuServiceCreationParams::New();
#if BUILDFLAG(IS_OZONE)
#if BUILDFLAG(IS_LINUX)
// Linux has an issue when running in single-process mode wherein
// GetPlatformRuntimeProperties() browser-side calls can have a data race with
// in-process GPU service initialization. The call to
// GetPlatformRuntimeProperties() below tickles that data race. Note that
// running in single-process mode on Linux is done only in test contexts.
const bool can_initialize_supports_overlays =
!params_.gpu_service_running_in_process;
#else
constexpr bool can_initialize_supports_overlays = true;
#endif
if (can_initialize_supports_overlays) {
gpu_service_params->supports_overlays = ui::OzonePlatform::GetInstance()
->GetPlatformRuntimeProperties()
.supports_overlays;
}
#endif
viz_main_->CreateGpuService(
gpu_service_remote_.BindNewPipeAndPassReceiver(task_runner),
gpu_host_receiver_.BindNewPipeAndPassRemote(task_runner),
gpu_logging_receiver_.BindNewPipeAndPassRemote(task_runner),
std::move(discardable_manager_remote),
use_shader_cache_shm_count_.CloneRegion(), std::move(gpu_service_params));
MaybeSendFontRenderParams();
#if BUILDFLAG(IS_OZONE)
InitOzone();
#endif // BUILDFLAG(IS_OZONE)
}
GpuHostImpl::~GpuHostImpl() {
GetFontRenderParams().SetGpuHostImpl(nullptr);
SendOutstandingReplies();
}
// static
void GpuHostImpl::InitFontRenderParams(const gfx::FontRenderParams& params) {
DCHECK(!GetFontRenderParams().Get());
GetFontRenderParams().Set(params);
}
void GpuHostImpl::SetProcessId(base::ProcessId pid) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK_EQ(base::kNullProcessId, pid_);
DCHECK_NE(base::kNullProcessId, pid);
pid_ = pid;
}
void GpuHostImpl::OnProcessCrashed() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// If the GPU process crashed while compiling a shader, we may have invalid
// cached binaries. Completely clear the shader cache to force shader binaries
// to be re-created.
if (use_shader_cache_shm_count_.GetCount() > 0) {
auto* gpu_disk_cache_factory = delegate_->GetGpuDiskCacheFactory();
for (auto& [_, cache] : client_id_to_caches_) {
// This call will temporarily extend the lifetime of the cache (kept
// alive in the factory), and may drop loads of cached shader binaries if
// it takes a while to complete. As we are intentionally dropping all
// binaries, this behavior is fine.
gpu_disk_cache_factory->ClearByCache(
cache, base::Time(), base::Time::Max(), base::DoNothing());
}
}
}
void GpuHostImpl::AddConnectionErrorHandler(base::OnceClosure handler) {
connection_error_handlers_.push_back(std::move(handler));
}
void GpuHostImpl::BlockLiveOffscreenContexts() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
std::set<GURL> urls(urls_with_live_offscreen_contexts_.begin(),
urls_with_live_offscreen_contexts_.end());
delegate_->BlockDomainsFrom3DAPIs(urls, gpu::DomainGuilt::kUnknown);
}
void GpuHostImpl::ConnectFrameSinkManager(
mojo::PendingReceiver<mojom::FrameSinkManager> receiver,
mojo::PendingRemote<mojom::FrameSinkManagerClient> client,
const DebugRendererSettings& debug_renderer_settings) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
TRACE_EVENT0("gpu", "GpuHostImpl::ConnectFrameSinkManager");
mojom::FrameSinkManagerParamsPtr params =
mojom::FrameSinkManagerParams::New();
params->restart_id = params_.restart_id;
params->use_activation_deadline =
params_.deadline_to_synchronize_surfaces.has_value();
params->activation_deadline_in_frames =
params_.deadline_to_synchronize_surfaces.value_or(0u);
params->frame_sink_manager = std::move(receiver);
params->frame_sink_manager_client = std::move(client);
params->debug_renderer_settings = debug_renderer_settings;
viz_main_->CreateFrameSinkManager(std::move(params));
}
void GpuHostImpl::EstablishGpuChannel(int client_id,
uint64_t client_tracing_id,
bool is_gpu_host,
bool sync,
EstablishChannelCallback callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
TRACE_EVENT0("gpu", "GpuHostImpl::EstablishGpuChannel");
shutdown_timeout_.Stop();
if (gpu::IsReservedClientId(client_id)) {
// The display-compositor/GrShaderCache in the gpu process uses these
// special client ids.
std::move(callback).Run(mojo::ScopedMessagePipeHandle(), gpu::GPUInfo(),
gpu::GpuFeatureInfo(),
gpu::SharedImageCapabilities(),
EstablishChannelStatus::kGpuAccessDenied);
return;
}
channel_requests_[client_id] = std::move(callback);
if (sync) {
mojo::ScopedMessagePipeHandle channel_handle;
gpu::GPUInfo gpu_info;
gpu::GpuFeatureInfo gpu_feature_info;
gpu::SharedImageCapabilities shared_image_capabilities;
{
mojo::SyncCallRestrictions::ScopedAllowSyncCall scoped_allow;
gpu_service_remote_->EstablishGpuChannel(
client_id, client_tracing_id, is_gpu_host, &channel_handle, &gpu_info,
&gpu_feature_info, &shared_image_capabilities);
}
OnChannelEstablished(client_id, true, std::move(channel_handle), gpu_info,
gpu_feature_info, shared_image_capabilities);
} else {
gpu_service_remote_->EstablishGpuChannel(
client_id, client_tracing_id, is_gpu_host,
base::BindOnce(&GpuHostImpl::OnChannelEstablished,
weak_ptr_factory_.GetWeakPtr(), client_id, false));
}
// The gpu host channel uses the same cache as the compositor client.
if (is_gpu_host) {
SetChannelDiskCacheHandle(client_id,
gpu::kDisplayCompositorGpuDiskCacheHandle);
}
}
void GpuHostImpl::SetChannelClientPid(int client_id,
base::ProcessId client_pid) {
gpu_service_remote_->SetChannelClientPid(client_id, client_pid);
}
void GpuHostImpl::SetChannelDiskCacheHandle(
int client_id,
const gpu::GpuDiskCacheHandle& handle) {
if (params_.disable_gpu_shader_disk_cache) {
return;
}
scoped_refptr<gpu::GpuDiskCache> cache =
delegate_->GetGpuDiskCacheFactory()->Get(handle);
if (!cache) {
// Create the cache if necessary and save a reference.
cache = delegate_->GetGpuDiskCacheFactory()->Create(
handle,
base::BindRepeating(&GpuHostImpl::LoadedBlob,
weak_ptr_factory_.GetWeakPtr()),
base::BindOnce(&GpuHostImpl::OnDiskCacheHandleDestoyed,
weak_ptr_factory_.GetWeakPtr()));
if (!cache) {
return;
}
}
client_id_to_caches_.emplace(client_id, cache);
gpu_service_remote_->SetChannelDiskCacheHandle(client_id, handle);
}
void GpuHostImpl::RemoveChannelDiskCacheHandles(int client_id) {
// Release the handle, then release the cache.
auto [start, end] = client_id_to_caches_.equal_range(client_id);
for (auto it = start; it != end; ++it) {
delegate_->GetGpuDiskCacheFactory()->ReleaseCacheHandle(it->second.get());
}
client_id_to_caches_.erase(client_id);
}
void GpuHostImpl::CloseChannel(int client_id) {
gpu_service_remote_->CloseChannel(client_id);
channel_requests_.erase(client_id);
}
#if BUILDFLAG(USE_VIZ_DEBUGGER)
void GpuHostImpl::FilterVisualDebugStream(base::Value::Dict json) {
viz_main_->FilterDebugStream(std::move(json));
}
void GpuHostImpl::StartVisualDebugStream(
base::RepeatingCallback<void(base::Value)> callback) {
viz_debug_output_callback_ = std::move(callback);
viz_main_->StartDebugStream(viz_debug_output_.BindNewPipeAndPassRemote());
}
void GpuHostImpl::StopVisualDebugStream() {
viz_main_->StopDebugStream();
viz_debug_output_.reset();
}
#endif
void GpuHostImpl::SendOutstandingReplies() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
for (auto& handler : connection_error_handlers_)
std::move(handler).Run();
connection_error_handlers_.clear();
// Send empty channel handles for all EstablishChannel requests.
for (auto& entry : channel_requests_) {
std::move(entry.second)
.Run(mojo::ScopedMessagePipeHandle(), gpu::GPUInfo(),
gpu::GpuFeatureInfo(), gpu::SharedImageCapabilities(),
EstablishChannelStatus::kGpuHostInvalid);
}
channel_requests_.clear();
}
void GpuHostImpl::BindInterface(const std::string& interface_name,
mojo::ScopedMessagePipeHandle interface_pipe) {
delegate_->BindInterface(interface_name, std::move(interface_pipe));
}
mojom::GpuService* GpuHostImpl::gpu_service() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(gpu_service_remote_.is_bound());
return gpu_service_remote_.get();
}
#if BUILDFLAG(IS_WIN)
mojom::InfoCollectionGpuService* GpuHostImpl::info_collection_gpu_service() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(info_collection_gpu_service_remote_.is_bound());
return info_collection_gpu_service_remote_.get();
}
#endif
#if BUILDFLAG(IS_OZONE)
void GpuHostImpl::InitOzone() {
// Ozone needs to send the primary DRM device to GPU service as early as
// possible to ensure the latter always has a valid device.
// https://crbug.com/608839
//
// The Ozone/Wayland requires mojo communication to be established to be
// functional with a separate gpu process. Thus, using the PlatformProperties,
// check if there is such a requirement.
auto interface_binder = base::BindRepeating(&GpuHostImpl::BindInterface,
weak_ptr_factory_.GetWeakPtr());
auto terminate_callback = base::BindOnce(&GpuHostImpl::TerminateGpuProcess,
weak_ptr_factory_.GetWeakPtr());
ui::OzonePlatform::GetInstance()
->GetGpuPlatformSupportHost()
->OnGpuServiceLaunched(params_.restart_id, interface_binder,
std::move(terminate_callback));
}
void GpuHostImpl::TerminateGpuProcess(const std::string& message) {
delegate_->TerminateGpuProcess(message);
}
#endif // BUILDFLAG(IS_OZONE)
std::string GpuHostImpl::GetShaderPrefixKey() {
if (shader_prefix_key_.empty()) {
const gpu::GPUInfo& info = delegate_->GetGPUInfo();
const gpu::GPUInfo::GPUDevice& active_gpu = info.active_gpu();
shader_prefix_key_ = params_.product + "-" + info.gl_vendor + "-" +
info.gl_renderer + "-" + active_gpu.driver_version +
"-" + active_gpu.driver_vendor + "-" +
base::SysInfo::ProcessCPUArchitecture();
#if BUILDFLAG(IS_ANDROID)
std::string build_fp =
base::android::BuildInfo::GetInstance()->android_build_fp();
shader_prefix_key_ += "-" + build_fp;
#endif
}
return shader_prefix_key_;
}
void GpuHostImpl::LoadedBlob(const gpu::GpuDiskCacheHandle& handle,
const std::string& key,
const std::string& data) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
TRACE_EVENT1("gpu", "GpuHostImpl::LoadedBlob", "handle_type",
GetHandleType(handle));
gpu_service_remote_->LoadedBlob(handle, key, data);
}
void GpuHostImpl::OnDiskCacheHandleDestoyed(
const gpu::GpuDiskCacheHandle& handle) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
gpu_service_remote_->OnDiskCacheHandleDestoyed(handle);
}
void GpuHostImpl::OnChannelEstablished(
int client_id,
bool sync,
mojo::ScopedMessagePipeHandle channel_handle,
const gpu::GPUInfo& gpu_info,
const gpu::GpuFeatureInfo& gpu_feature_info,
const gpu::SharedImageCapabilities& shared_image_capabilities) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
TRACE_EVENT0("gpu", "GpuHostImpl::OnChannelEstablished");
auto it = channel_requests_.find(client_id);
if (it == channel_requests_.end())
return;
auto callback = std::move(it->second);
channel_requests_.erase(it);
// If the GPU process sent an empty handle back, it could be a transient error
// in which case the client should try again so return kGpuHostInvalid.
if (!channel_handle.is_valid()) {
std::move(callback).Run(mojo::ScopedMessagePipeHandle(), gpu::GPUInfo(),
gpu::GpuFeatureInfo(),
gpu::SharedImageCapabilities(),
EstablishChannelStatus::kGpuHostInvalid);
return;
}
// TODO(jam): always use GPUInfo & GpuFeatureInfo from the service once we
// know there's no issue with the ProcessHostOnUI which is the only mode
// that currently uses it. This is because in that mode the sync mojo call
// in the caller means we won't get the async DidInitialize() call before
// this point, so the delegate_ methods won't have the GPU info structs yet.
if (sync) {
std::move(callback).Run(std::move(channel_handle), gpu_info,
gpu_feature_info, shared_image_capabilities,
EstablishChannelStatus::kSuccess);
} else {
std::move(callback).Run(std::move(channel_handle), delegate_->GetGPUInfo(),
delegate_->GetGpuFeatureInfo(),
shared_image_capabilities,
EstablishChannelStatus::kSuccess);
}
}
void GpuHostImpl::DidInitialize(
const gpu::GPUInfo& gpu_info,
const gpu::GpuFeatureInfo& gpu_feature_info,
const std::optional<gpu::GPUInfo>& gpu_info_for_hardware_gpu,
const std::optional<gpu::GpuFeatureInfo>& gpu_feature_info_for_hardware_gpu,
const gfx::GpuExtraInfo& gpu_extra_info) {
delegate_->DidInitialize(gpu_info, gpu_feature_info,
gpu_info_for_hardware_gpu,
gpu_feature_info_for_hardware_gpu, gpu_extra_info);
if (!params_.disable_gpu_shader_disk_cache) {
SetChannelDiskCacheHandle(gpu::kDisplayCompositorClientId,
gpu::kDisplayCompositorGpuDiskCacheHandle);
SetChannelDiskCacheHandle(gpu::kGrShaderCacheClientId,
gpu::kGrShaderGpuDiskCacheHandle);
SetChannelDiskCacheHandle(gpu::kGraphiteDawnClientId,
gpu::kGraphiteDawnGpuDiskCacheHandle);
}
}
void GpuHostImpl::DidFailInitialize() {
delegate_->DidFailInitialize();
}
void GpuHostImpl::DidCreateContextSuccessfully() {
delegate_->DidCreateContextSuccessfully();
}
void GpuHostImpl::DidCreateOffscreenContext(const GURL& url) {
urls_with_live_offscreen_contexts_.insert(url);
}
void GpuHostImpl::DidDestroyOffscreenContext(const GURL& url) {
// We only want to remove *one* of the entries in the multiset for this
// particular URL, so can't use the erase method taking a key.
auto candidate = urls_with_live_offscreen_contexts_.find(url);
if (candidate != urls_with_live_offscreen_contexts_.end())
urls_with_live_offscreen_contexts_.erase(candidate);
}
void GpuHostImpl::DidDestroyChannel(int32_t client_id) {
TRACE_EVENT0("gpu", "GpuHostImpl::DidDestroyChannel");
client_id_to_caches_.erase(client_id);
}
void GpuHostImpl::DidDestroyAllChannels() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!channel_requests_.empty())
return;
constexpr base::TimeDelta kShutDownTimeout = base::Seconds(10);
shutdown_timeout_.Start(FROM_HERE, kShutDownTimeout,
base::BindOnce(&GpuHostImpl::MaybeShutdownGpuProcess,
base::Unretained(this)));
}
void GpuHostImpl::MaybeShutdownGpuProcess() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(channel_requests_.empty());
delegate_->MaybeShutdownGpuProcess();
}
void GpuHostImpl::DidLoseContext(gpu::error::ContextLostReason reason,
const GURL& active_url) {
TRACE_EVENT2("gpu", "GpuHostImpl::DidLoseContext", "reason", reason, "url",
active_url.possibly_invalid_spec());
if (active_url.is_empty()) {
return;
}
gpu::DomainGuilt guilt = gpu::DomainGuilt::kUnknown;
switch (reason) {
case gpu::error::kGuilty:
guilt = gpu::DomainGuilt::kKnown;
break;
// Treat most other error codes as though they had unknown provenance.
// In practice this doesn't affect the user experience. A lost context
// of either known or unknown guilt still causes user-level 3D APIs
// (e.g. WebGL) to be blocked on that domain until the user manually
// reenables them.
case gpu::error::kUnknown:
case gpu::error::kOutOfMemory:
case gpu::error::kMakeCurrentFailed:
case gpu::error::kGpuChannelLost:
case gpu::error::kInvalidGpuMessage:
break;
case gpu::error::kInnocent:
return;
}
std::set<GURL> urls{active_url};
delegate_->BlockDomainsFrom3DAPIs(urls, guilt);
}
void GpuHostImpl::DisableGpuCompositing() {
delegate_->DisableGpuCompositing();
}
void GpuHostImpl::GetIsolationKey(
int32_t client_id,
const blink::WebGPUExecutionContextToken& token,
GetIsolationKeyCallback cb) {
std::string isolation_key = delegate_->GetIsolationKey(client_id, token);
std::move(cb).Run(isolation_key);
}
void GpuHostImpl::DidUpdateGPUInfo(const gpu::GPUInfo& gpu_info) {
delegate_->DidUpdateGPUInfo(gpu_info);
}
#if BUILDFLAG(IS_WIN)
void GpuHostImpl::DidUpdateOverlayInfo(const gpu::OverlayInfo& overlay_info) {
delegate_->DidUpdateOverlayInfo(overlay_info);
}
void GpuHostImpl::DidUpdateDXGIInfo(gfx::mojom::DXGIInfoPtr dxgi_info) {
delegate_->DidUpdateDXGIInfo(std::move(dxgi_info));
}
void GpuHostImpl::AddChildWindow(gpu::SurfaceHandle parent_window,
gpu::SurfaceHandle child_window) {
if (pid_ != base::kNullProcessId) {
gfx::RenderingWindowManager::GetInstance()->RegisterChild(
parent_window, child_window, /*expected_child_process_id=*/pid_);
}
}
#endif // BUILDFLAG(IS_WIN)
void GpuHostImpl::MaybeSendFontRenderParams() {
if (const auto& params = GetFontRenderParams().Get()) {
viz_main_->SetRenderParams(params->subpixel_rendering,
params->text_contrast, params->text_gamma);
} else {
GetFontRenderParams().SetGpuHostImpl(this);
}
}
void GpuHostImpl::StoreBlobToDisk(const gpu::GpuDiskCacheHandle& handle,
const std::string& key,
const std::string& blob) {
scoped_refptr<gpu::GpuDiskCache> cache =
delegate_->GetGpuDiskCacheFactory()->Get(handle);
if (!cache) {
return;
}
TRACE_EVENT1("gpu", "GpuHostImpl::StoreBlobToDisk", "handle_type",
GetHandleType(handle));
cache->Cache(key, blob);
}
void GpuHostImpl::ClearGrShaderDiskCache() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
auto* gpu_disk_cache_factory = delegate_->GetGpuDiskCacheFactory();
for (auto& [client_id, cache] : client_id_to_caches_) {
// This call will temporarily extend the lifetime of the cache (kept
// alive in the factory), and may drop loads of cached shader binaries if
// it takes a while to complete. As we are intentionally dropping all
// binaries, this behavior is fine.
if (client_id == gpu::kGrShaderCacheClientId) {
gpu_disk_cache_factory->ClearByCache(
cache, base::Time(), base::Time::Max(), base::DoNothing());
}
}
}
void GpuHostImpl::RecordLogMessage(int32_t severity,
const std::string& header,
const std::string& message) {
delegate_->RecordLogMessage(severity, header, message);
}
#if BUILDFLAG(USE_VIZ_DEBUGGER)
void GpuHostImpl::LogFrame(base::Value frame_data) {
if (!viz_debug_output_callback_.is_null())
viz_debug_output_callback_.Run(std::move(frame_data));
}
#endif
} // namespace viz
|