[go: nahoru, domu]

blob: 3d83f10c1a373c70fe50ce4ecae0ee6c706f1d22 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/compositor/test/in_process_context_factory.h"
#include <utility>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/threading/thread.h"
#include "cc/base/switches.h"
#include "cc/output/context_provider.h"
#include "cc/output/output_surface_client.h"
#include "cc/output/output_surface_frame.h"
#include "cc/output/texture_mailbox_deleter.h"
#include "cc/scheduler/begin_frame_source.h"
#include "cc/scheduler/delay_based_time_source.h"
#include "cc/surfaces/direct_layer_tree_frame_sink.h"
#include "cc/surfaces/display.h"
#include "cc/surfaces/display_scheduler.h"
#include "cc/surfaces/local_surface_id_allocator.h"
#include "cc/test/pixel_test_output_surface.h"
#include "components/viz/host/frame_sink_manager_host.h"
#include "gpu/command_buffer/client/context_support.h"
#include "gpu/command_buffer/client/gles2_interface.h"
#include "gpu/command_buffer/common/gles2_cmd_utils.h"
#include "ui/compositor/compositor_switches.h"
#include "ui/compositor/layer.h"
#include "ui/compositor/reflector.h"
#include "ui/compositor/test/in_process_context_provider.h"
#include "ui/display/display_switches.h"
#include "ui/gfx/switches.h"
#include "ui/gl/gl_implementation.h"
#include "ui/gl/test/gl_surface_test_support.h"
#if !defined(GPU_SURFACE_HANDLE_IS_ACCELERATED_WINDOW)
#include "gpu/ipc/common/gpu_surface_tracker.h"
#endif
namespace ui {
namespace {
// The client_id used here should not conflict with the client_id generated
// from RenderWidgetHostImpl.
constexpr uint32_t kDefaultClientId = 0u;
class FakeReflector : public Reflector {
public:
FakeReflector() {}
~FakeReflector() override {}
void OnMirroringCompositorResized() override {}
void AddMirroringLayer(Layer* layer) override {}
void RemoveMirroringLayer(Layer* layer) override {}
};
// An OutputSurface implementation that directly draws and swaps to an actual
// GL surface.
class DirectOutputSurface : public cc::OutputSurface {
public:
explicit DirectOutputSurface(
scoped_refptr<InProcessContextProvider> context_provider)
: cc::OutputSurface(context_provider), weak_ptr_factory_(this) {
capabilities_.flipped_output_surface = true;
}
~DirectOutputSurface() override {}
// cc::OutputSurface implementation.
void BindToClient(cc::OutputSurfaceClient* client) override {
client_ = client;
}
void EnsureBackbuffer() override {}
void DiscardBackbuffer() override {}
void BindFramebuffer() override {
context_provider()->ContextGL()->BindFramebuffer(GL_FRAMEBUFFER, 0);
}
void SetDrawRectangle(const gfx::Rect& rect) override {}
void Reshape(const gfx::Size& size,
float device_scale_factor,
const gfx::ColorSpace& color_space,
bool has_alpha,
bool use_stencil) override {
context_provider()->ContextGL()->ResizeCHROMIUM(
size.width(), size.height(), device_scale_factor, has_alpha);
}
void SwapBuffers(cc::OutputSurfaceFrame frame) override {
DCHECK(context_provider_.get());
if (frame.sub_buffer_rect) {
context_provider_->ContextSupport()->PartialSwapBuffers(
*frame.sub_buffer_rect);
} else {
context_provider_->ContextSupport()->Swap();
}
gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL();
const uint64_t fence_sync = gl->InsertFenceSyncCHROMIUM();
gl->ShallowFlushCHROMIUM();
gpu::SyncToken sync_token;
gl->GenUnverifiedSyncTokenCHROMIUM(fence_sync, sync_token.GetData());
context_provider_->ContextSupport()->SignalSyncToken(
sync_token, base::Bind(&DirectOutputSurface::OnSwapBuffersComplete,
weak_ptr_factory_.GetWeakPtr()));
}
uint32_t GetFramebufferCopyTextureFormat() override {
auto* gl = static_cast<InProcessContextProvider*>(context_provider());
return gl->GetCopyTextureInternalFormat();
}
cc::OverlayCandidateValidator* GetOverlayCandidateValidator() const override {
return nullptr;
}
bool IsDisplayedAsOverlayPlane() const override { return false; }
unsigned GetOverlayTextureId() const override { return 0; }
bool SurfaceIsSuspendForRecycle() const override { return false; }
bool HasExternalStencilTest() const override { return false; }
void ApplyExternalStencil() override {}
private:
void OnSwapBuffersComplete() { client_->DidReceiveSwapBuffersAck(); }
cc::OutputSurfaceClient* client_ = nullptr;
base::WeakPtrFactory<DirectOutputSurface> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(DirectOutputSurface);
};
} // namespace
struct InProcessContextFactory::PerCompositorData {
gpu::SurfaceHandle surface_handle = gpu::kNullSurfaceHandle;
std::unique_ptr<cc::BeginFrameSource> begin_frame_source;
std::unique_ptr<cc::Display> display;
};
InProcessContextFactory::InProcessContextFactory(
viz::FrameSinkManagerHost* frame_sink_manager,
cc::SurfaceManager* surface_manager)
: frame_sink_id_allocator_(kDefaultClientId),
use_test_surface_(true),
frame_sink_manager_(frame_sink_manager),
surface_manager_(surface_manager) {
DCHECK(frame_sink_manager);
DCHECK_NE(gl::GetGLImplementation(), gl::kGLImplementationNone)
<< "If running tests, ensure that main() is calling "
<< "gl::GLSurfaceTestSupport::InitializeOneOff()";
#if defined(OS_WIN)
renderer_settings_.finish_rendering_on_resize = true;
#elif defined(OS_MACOSX)
renderer_settings_.release_overlay_resources_after_gpu_query = true;
#endif
// Populate buffer_to_texture_target_map for all buffer usage/formats.
for (int usage_idx = 0; usage_idx <= static_cast<int>(gfx::BufferUsage::LAST);
++usage_idx) {
gfx::BufferUsage usage = static_cast<gfx::BufferUsage>(usage_idx);
for (int format_idx = 0;
format_idx <= static_cast<int>(gfx::BufferFormat::LAST);
++format_idx) {
gfx::BufferFormat format = static_cast<gfx::BufferFormat>(format_idx);
renderer_settings_.resource_settings
.buffer_to_texture_target_map[std::make_pair(usage, format)] =
GL_TEXTURE_2D;
}
}
}
InProcessContextFactory::~InProcessContextFactory() {
DCHECK(per_compositor_data_.empty());
}
void InProcessContextFactory::SendOnLostResources() {
for (auto& observer : observer_list_)
observer.OnLostResources();
}
void InProcessContextFactory::SetUseFastRefreshRateForTests() {
refresh_rate_ = 200.0;
}
void InProcessContextFactory::CreateLayerTreeFrameSink(
base::WeakPtr<Compositor> compositor) {
// Try to reuse existing shared worker context provider.
bool shared_worker_context_provider_lost = false;
if (shared_worker_context_provider_) {
// Note: If context is lost, delete reference after releasing the lock.
base::AutoLock lock(*shared_worker_context_provider_->GetLock());
if (shared_worker_context_provider_->ContextGL()
->GetGraphicsResetStatusKHR() != GL_NO_ERROR) {
shared_worker_context_provider_lost = true;
}
}
if (!shared_worker_context_provider_ || shared_worker_context_provider_lost) {
shared_worker_context_provider_ = InProcessContextProvider::CreateOffscreen(
&gpu_memory_buffer_manager_, &image_factory_, nullptr);
if (shared_worker_context_provider_ &&
!shared_worker_context_provider_->BindToCurrentThread())
shared_worker_context_provider_ = nullptr;
}
gpu::gles2::ContextCreationAttribHelper attribs;
attribs.alpha_size = 8;
attribs.blue_size = 8;
attribs.green_size = 8;
attribs.red_size = 8;
attribs.depth_size = 0;
attribs.stencil_size = 0;
attribs.samples = 0;
attribs.sample_buffers = 0;
attribs.fail_if_major_perf_caveat = false;
attribs.bind_generates_resource = false;
PerCompositorData* data = per_compositor_data_[compositor.get()].get();
if (!data)
data = CreatePerCompositorData(compositor.get());
scoped_refptr<InProcessContextProvider> context_provider =
InProcessContextProvider::Create(
attribs, shared_worker_context_provider_.get(),
&gpu_memory_buffer_manager_, &image_factory_, data->surface_handle,
"UICompositor");
std::unique_ptr<cc::OutputSurface> display_output_surface;
if (use_test_surface_) {
bool flipped_output_surface = false;
display_output_surface = base::MakeUnique<cc::PixelTestOutputSurface>(
context_provider, flipped_output_surface);
} else {
display_output_surface =
base::MakeUnique<DirectOutputSurface>(context_provider);
}
std::unique_ptr<cc::DelayBasedBeginFrameSource> begin_frame_source(
new cc::DelayBasedBeginFrameSource(
base::MakeUnique<cc::DelayBasedTimeSource>(
compositor->task_runner().get())));
std::unique_ptr<cc::DisplayScheduler> scheduler(new cc::DisplayScheduler(
begin_frame_source.get(), compositor->task_runner().get(),
display_output_surface->capabilities().max_frames_pending));
data->display = base::MakeUnique<cc::Display>(
&shared_bitmap_manager_, &gpu_memory_buffer_manager_, renderer_settings_,
compositor->frame_sink_id(), std::move(display_output_surface),
std::move(scheduler),
base::MakeUnique<cc::TextureMailboxDeleter>(
compositor->task_runner().get()));
GetSurfaceManager()->RegisterBeginFrameSource(begin_frame_source.get(),
compositor->frame_sink_id());
// Note that we are careful not to destroy a prior |data->begin_frame_source|
// until we have reset |data->display|.
data->begin_frame_source = std::move(begin_frame_source);
auto* display = per_compositor_data_[compositor.get()]->display.get();
auto layer_tree_frame_sink = base::MakeUnique<cc::DirectLayerTreeFrameSink>(
compositor->frame_sink_id(), GetSurfaceManager(), display,
context_provider, shared_worker_context_provider_,
&gpu_memory_buffer_manager_, &shared_bitmap_manager_);
compositor->SetLayerTreeFrameSink(std::move(layer_tree_frame_sink));
data->display->Resize(compositor->size());
}
std::unique_ptr<Reflector> InProcessContextFactory::CreateReflector(
Compositor* mirrored_compositor,
Layer* mirroring_layer) {
return base::WrapUnique(new FakeReflector);
}
void InProcessContextFactory::RemoveReflector(Reflector* reflector) {
}
scoped_refptr<cc::ContextProvider>
InProcessContextFactory::SharedMainThreadContextProvider() {
if (shared_main_thread_contexts_ &&
shared_main_thread_contexts_->ContextGL()->GetGraphicsResetStatusKHR() ==
GL_NO_ERROR)
return shared_main_thread_contexts_;
shared_main_thread_contexts_ = InProcessContextProvider::CreateOffscreen(
&gpu_memory_buffer_manager_, &image_factory_, nullptr);
if (shared_main_thread_contexts_.get() &&
!shared_main_thread_contexts_->BindToCurrentThread())
shared_main_thread_contexts_ = NULL;
return shared_main_thread_contexts_;
}
void InProcessContextFactory::RemoveCompositor(Compositor* compositor) {
PerCompositorDataMap::iterator it = per_compositor_data_.find(compositor);
if (it == per_compositor_data_.end())
return;
PerCompositorData* data = it->second.get();
GetSurfaceManager()->UnregisterBeginFrameSource(
data->begin_frame_source.get());
DCHECK(data);
#if !defined(GPU_SURFACE_HANDLE_IS_ACCELERATED_WINDOW)
if (data->surface_handle)
gpu::GpuSurfaceTracker::Get()->RemoveSurface(data->surface_handle);
#endif
per_compositor_data_.erase(it);
}
double InProcessContextFactory::GetRefreshRate() const {
return refresh_rate_;
}
gpu::GpuMemoryBufferManager*
InProcessContextFactory::GetGpuMemoryBufferManager() {
return &gpu_memory_buffer_manager_;
}
cc::TaskGraphRunner* InProcessContextFactory::GetTaskGraphRunner() {
return &task_graph_runner_;
}
cc::FrameSinkId InProcessContextFactory::AllocateFrameSinkId() {
return frame_sink_id_allocator_.NextFrameSinkId();
}
cc::SurfaceManager* InProcessContextFactory::GetSurfaceManager() {
return surface_manager_;
}
viz::FrameSinkManagerHost* InProcessContextFactory::GetFrameSinkManagerHost() {
return frame_sink_manager_;
}
void InProcessContextFactory::SetDisplayVisible(ui::Compositor* compositor,
bool visible) {
if (!per_compositor_data_.count(compositor))
return;
per_compositor_data_[compositor]->display->SetVisible(visible);
}
void InProcessContextFactory::ResizeDisplay(ui::Compositor* compositor,
const gfx::Size& size) {
if (!per_compositor_data_.count(compositor))
return;
per_compositor_data_[compositor]->display->Resize(size);
}
const cc::ResourceSettings& InProcessContextFactory::GetResourceSettings()
const {
return renderer_settings_.resource_settings;
}
void InProcessContextFactory::AddObserver(ContextFactoryObserver* observer) {
observer_list_.AddObserver(observer);
}
void InProcessContextFactory::RemoveObserver(ContextFactoryObserver* observer) {
observer_list_.RemoveObserver(observer);
}
InProcessContextFactory::PerCompositorData*
InProcessContextFactory::CreatePerCompositorData(ui::Compositor* compositor) {
DCHECK(!per_compositor_data_[compositor]);
gfx::AcceleratedWidget widget = compositor->widget();
auto data = base::MakeUnique<PerCompositorData>();
if (widget == gfx::kNullAcceleratedWidget) {
data->surface_handle = gpu::kNullSurfaceHandle;
} else {
#if defined(GPU_SURFACE_HANDLE_IS_ACCELERATED_WINDOW)
data->surface_handle = widget;
#else
gpu::GpuSurfaceTracker* tracker = gpu::GpuSurfaceTracker::Get();
data->surface_handle = tracker->AddSurfaceForNativeWidget(
gpu::GpuSurfaceTracker::SurfaceRecord(
widget
#if defined(OS_ANDROID)
// We have to provide a surface too, but we don't have one. For
// now, we don't proide it, since nobody should ask anyway.
// If we ever provide a valid surface here, then GpuSurfaceTracker
// can be more strict about enforcing it.
,
nullptr
#endif
));
#endif
}
PerCompositorData* return_ptr = data.get();
per_compositor_data_[compositor] = std::move(data);
return return_ptr;
}
} // namespace ui