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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/ipc/raster_in_process_context.h"
#include <utility>
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/run_loop.h"
#include "base/task/single_thread_task_runner.h"
#include "gpu/command_buffer/client/gles2_cmd_helper.h"
#include "gpu/command_buffer/client/raster_cmd_helper.h"
#include "gpu/command_buffer/client/raster_implementation_gles.h"
#include "gpu/command_buffer/client/shared_memory_limits.h"
#include "gpu/command_buffer/client/transfer_buffer.h"
#include "gpu/command_buffer/common/command_buffer.h"
#include "gpu/command_buffer/common/constants.h"
#include "gpu/command_buffer/common/context_creation_attribs.h"
#include "gpu/command_buffer/service/service_utils.h"
#include "gpu/config/gpu_feature_info.h"
#include "gpu/config/gpu_switches.h"
#include "gpu/ipc/common/surface_handle.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace gpu {
RasterInProcessContext::RasterInProcessContext() = default;
RasterInProcessContext::~RasterInProcessContext() {
// Trigger any pending lost contexts. First do a full sync between client
// and service threads. Then execute any pending tasks.
if (raster_implementation_) {
raster_implementation_->Finish();
base::RunLoop().RunUntilIdle();
raster_implementation_.reset();
}
transfer_buffer_.reset();
helper_.reset();
command_buffer_.reset();
}
ContextResult RasterInProcessContext::Initialize(
CommandBufferTaskExecutor* task_executor,
const ContextCreationAttribs& attribs,
const SharedMemoryLimits& memory_limits,
gpu::raster::GrShaderCache* gr_shader_cache,
GpuProcessShmCount* use_shader_cache_shm_count) {
DCHECK(attribs.enable_raster_interface);
if (!attribs.enable_raster_interface) {
return ContextResult::kFatalFailure;
}
DCHECK(!attribs.enable_gles2_interface);
if (attribs.enable_gles2_interface) {
return ContextResult::kFatalFailure;
}
command_buffer_ =
std::make_unique<InProcessCommandBuffer>(task_executor, GURL());
auto result = command_buffer_->Initialize(
attribs, base::SingleThreadTaskRunner::GetCurrentDefault(),
gr_shader_cache, use_shader_cache_shm_count);
if (result != ContextResult::kSuccess) {
DLOG(ERROR) << "Failed to initialize InProcessCommmandBuffer";
return result;
}
// Check for consistency.
DCHECK(!attribs.bind_generates_resource);
constexpr bool bind_generates_resource = false;
// Create the RasterCmdHelper, which writes the command buffer protocol.
auto raster_helper =
std::make_unique<raster::RasterCmdHelper>(command_buffer_.get());
result = raster_helper->Initialize(memory_limits.command_buffer_size);
if (result != ContextResult::kSuccess) {
LOG(ERROR) << "Failed to initialize RasterCmdHelper";
return result;
}
transfer_buffer_ = std::make_unique<TransferBuffer>(raster_helper.get());
raster_implementation_ = std::make_unique<raster::RasterImplementation>(
raster_helper.get(), transfer_buffer_.get(), bind_generates_resource,
attribs.lose_context_when_out_of_memory, command_buffer_.get(),
nullptr /* image_decode_accelerator */);
result = raster_implementation_->Initialize(memory_limits);
raster_implementation_->SetLostContextCallback(base::BindOnce(
[]() { EXPECT_TRUE(false) << "Unexpected lost context."; }));
helper_ = std::move(raster_helper);
return result;
}
const Capabilities& RasterInProcessContext::GetCapabilities() const {
return command_buffer_->GetCapabilities();
}
const GpuFeatureInfo& RasterInProcessContext::GetGpuFeatureInfo() const {
return command_buffer_->GetGpuFeatureInfo();
}
raster::RasterImplementation* RasterInProcessContext::GetImplementation() {
return raster_implementation_.get();
}
ContextSupport* RasterInProcessContext::GetContextSupport() {
return raster_implementation_.get();
}
SharedImageInterface* RasterInProcessContext::GetSharedImageInterface() {
return command_buffer_->GetSharedImageInterface();
}
ServiceTransferCache* RasterInProcessContext::GetTransferCacheForTest() const {
return command_buffer_->GetTransferCacheForTest();
}
InProcessCommandBuffer* RasterInProcessContext::GetCommandBufferForTest()
const {
return command_buffer_.get();
}
int RasterInProcessContext::GetRasterDecoderIdForTest() const {
return command_buffer_->GetRasterDecoderIdForTest();
}
// static
bool RasterInProcessContext::SupportedInTest() {
const base::CommandLine* command_line =
base::CommandLine::ForCurrentProcess();
GpuPreferences gpu_preferences = gles2::ParseGpuPreferences(command_line);
return !gpu_preferences.use_passthrough_cmd_decoder;
}
} // namespace gpu
|