[go: nahoru, domu]

blob: c73271e077b84ca4187fd1e3b7414197021a7735 [file] [log] [blame]
// Copyright 2015 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/aura/mus/mus_context_factory.h"
#include "base/command_line.h"
#include "base/memory/ptr_util.h"
#include "cc/base/switches.h"
#include "services/ui/public/cpp/gpu/gpu.h"
#include "ui/aura/mus/window_port_mus.h"
#include "ui/aura/window_tree_host.h"
#include "ui/compositor/compositor_switches.h"
#include "ui/compositor/compositor_util.h"
#include "ui/display/display_switches.h"
#include "ui/gfx/switches.h"
#include "ui/gl/gl_bindings.h"
namespace aura {
MusContextFactory::MusContextFactory(ui::Gpu* gpu)
: gpu_(gpu),
renderer_settings_(ui::CreateRendererSettings(
[](gfx::BufferFormat format, gfx::BufferUsage usage) -> uint32_t {
// TODO(sad): http://crbug.com/675431
return GL_TEXTURE_2D;
})),
weak_ptr_factory_(this) {}
MusContextFactory::~MusContextFactory() {}
void MusContextFactory::OnEstablishedGpuChannel(
base::WeakPtr<ui::Compositor> compositor,
scoped_refptr<gpu::GpuChannelHost> gpu_channel) {
if (!compositor)
return;
WindowTreeHost* host =
WindowTreeHost::GetForAcceleratedWidget(compositor->widget());
WindowPortMus* window_port = WindowPortMus::Get(host->window());
DCHECK(window_port);
std::unique_ptr<cc::LayerTreeFrameSink> layer_tree_frame_sink =
window_port->RequestLayerTreeFrameSink(
gpu_->CreateContextProvider(std::move(gpu_channel)),
gpu_->gpu_memory_buffer_manager());
compositor->SetLayerTreeFrameSink(std::move(layer_tree_frame_sink));
}
void MusContextFactory::CreateLayerTreeFrameSink(
base::WeakPtr<ui::Compositor> compositor) {
gpu_->EstablishGpuChannel(
base::Bind(&MusContextFactory::OnEstablishedGpuChannel,
weak_ptr_factory_.GetWeakPtr(), compositor));
}
scoped_refptr<cc::ContextProvider>
MusContextFactory::SharedMainThreadContextProvider() {
if (!shared_main_thread_context_provider_) {
scoped_refptr<gpu::GpuChannelHost> gpu_channel =
gpu_->EstablishGpuChannelSync();
shared_main_thread_context_provider_ =
gpu_->CreateContextProvider(std::move(gpu_channel));
if (!shared_main_thread_context_provider_->BindToCurrentThread())
shared_main_thread_context_provider_ = nullptr;
}
return shared_main_thread_context_provider_;
}
void MusContextFactory::RemoveCompositor(ui::Compositor* compositor) {
// NOTIMPLEMENTED();
}
double MusContextFactory::GetRefreshRate() const {
return 60.0;
}
gpu::GpuMemoryBufferManager* MusContextFactory::GetGpuMemoryBufferManager() {
return gpu_->gpu_memory_buffer_manager();
}
cc::TaskGraphRunner* MusContextFactory::GetTaskGraphRunner() {
return raster_thread_helper_.task_graph_runner();
}
const cc::ResourceSettings& MusContextFactory::GetResourceSettings() const {
return renderer_settings_.resource_settings;
}
} // namespace aura