Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(419)

Unified Diff: components/html_viewer/web_graphics_context_3d_command_buffer_impl.cc

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/html_viewer/web_graphics_context_3d_command_buffer_impl.cc
diff --git a/components/html_viewer/web_graphics_context_3d_command_buffer_impl.cc b/components/html_viewer/web_graphics_context_3d_command_buffer_impl.cc
deleted file mode 100644
index 6fed3102524a1a31b5f7dbf22cdba0fae860191c..0000000000000000000000000000000000000000
--- a/components/html_viewer/web_graphics_context_3d_command_buffer_impl.cc
+++ /dev/null
@@ -1,80 +0,0 @@
-// 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 "components/html_viewer/web_graphics_context_3d_command_buffer_impl.h"
-
-#include <stdint.h>
-
-#include "components/html_viewer/blink_basic_type_converters.h"
-#include "components/html_viewer/global_state.h"
-#include "components/mus/public/cpp/context_provider.h"
-#include "components/mus/public/interfaces/gpu.mojom.h"
-#include "gpu/command_buffer/common/gles2_cmd_utils.h"
-#include "mojo/gles2/gles2_context.h"
-#include "mojo/gpu/mojo_gles2_impl_autogen.h"
-#include "mojo/public/cpp/environment/environment.h"
-#include "mojo/public/cpp/system/message_pipe.h"
-#include "mojo/shell/public/cpp/shell.h"
-
-namespace html_viewer {
-
-// static
-WebGraphicsContext3DCommandBufferImpl*
-WebGraphicsContext3DCommandBufferImpl::CreateOffscreenContext(
- GlobalState* global_state,
- mojo::Shell* shell,
- const GURL& active_url,
- const blink::WebGraphicsContext3D::Attributes& attributes,
- blink::WebGraphicsContext3D* share_context,
- blink::WebGraphicsContext3D::WebGraphicsInfo* gl_info) {
- DCHECK(gl_info);
- const mus::mojom::GpuInfo* gpu_info = global_state->GetGpuInfo();
- gl_info->vendorId = gpu_info->vendor_id;
- gl_info->deviceId = gpu_info->device_id;
- gl_info->vendorInfo = gpu_info->vendor_info.To<blink::WebString>();
- gl_info->rendererInfo = gpu_info->renderer_info.To<blink::WebString>();
- gl_info->driverVersion = gpu_info->driver_version.To<blink::WebString>();
-
- mus::mojom::GpuPtr gpu_service;
- shell->ConnectToService("mojo:mus", &gpu_service);
- mus::mojom::CommandBufferPtr cb;
- gpu_service->CreateOffscreenGLES2Context(GetProxy(&cb));
- return new WebGraphicsContext3DCommandBufferImpl(
- cb.PassInterface(), active_url, attributes, share_context);
-}
-
-WebGraphicsContext3DCommandBufferImpl::WebGraphicsContext3DCommandBufferImpl(
- mojo::InterfacePtrInfo<mus::mojom::CommandBuffer> command_buffer_info,
- const GURL& active_url,
- const blink::WebGraphicsContext3D::Attributes& attributes,
- blink::WebGraphicsContext3D* share_context) {
- mojo::ScopedMessagePipeHandle handle(command_buffer_info.PassHandle());
- CHECK(handle.is_valid());
- // TODO(penghuang): Support share context.
- gpu::gles2::ContextCreationAttribHelper attrib_helper;
- ConvertAttributes(attributes, &attrib_helper);
- std::vector<int32_t> attrib_vector;
- attrib_helper.Serialize(&attrib_vector);
- gles2_context_ = MojoGLES2CreateContext(
- handle.release().value(),
- attrib_vector.data(),
- &ContextLostThunk,
- this,
- mojo::Environment::GetDefaultAsyncWaiter());
- context_gl_.reset(new mojo::MojoGLES2Impl(gles2_context_));
- setGLInterface(context_gl_.get());
-}
-
-WebGraphicsContext3DCommandBufferImpl::
- ~WebGraphicsContext3DCommandBufferImpl() {
- if (gles2_context_)
- MojoGLES2DestroyContext(gles2_context_);
-}
-
-void WebGraphicsContext3DCommandBufferImpl::ContextLost() {
- if (context_lost_callback_)
- context_lost_callback_->onContextLost();
-}
-
-} // namespace html_viewer

Powered by Google App Engine
This is Rietveld 408576698