| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/renderer/webgraphicscontext3d_provider_impl.h" | 5 #include "content/renderer/webgraphicscontext3d_provider_impl.h" |
| 6 | 6 |
| 7 #include "cc/blink/context_provider_web_context.h" | 7 #include "content/common/gpu/client/context_provider_command_buffer.h" |
| 8 #include "gpu/command_buffer/client/context_support.h" | 8 #include "gpu/command_buffer/client/context_support.h" |
| 9 #include "third_party/WebKit/public/platform/functional/WebFunction.h" | 9 #include "third_party/WebKit/public/platform/functional/WebFunction.h" |
| 10 | 10 |
| 11 namespace content { | 11 namespace content { |
| 12 | 12 |
| 13 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl( | 13 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl( |
| 14 scoped_refptr<cc_blink::ContextProviderWebContext> provider) | 14 scoped_refptr<ContextProviderCommandBuffer> provider) |
| 15 : provider_(provider) { | 15 : provider_(std::move(provider)) {} |
| 16 } | |
| 17 | 16 |
| 18 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {} | 17 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {} |
| 19 | 18 |
| 20 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { | 19 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { |
| 21 return provider_->WebContext3D(); | 20 return nullptr; |
| 22 } | 21 } |
| 23 | 22 |
| 24 gpu::gles2::GLES2Interface* WebGraphicsContext3DProviderImpl::contextGL() { | 23 gpu::gles2::GLES2Interface* WebGraphicsContext3DProviderImpl::contextGL() { |
| 25 return provider_->ContextGL(); | 24 return provider_->ContextGL(); |
| 26 } | 25 } |
| 27 | 26 |
| 28 GrContext* WebGraphicsContext3DProviderImpl::grContext() { | 27 GrContext* WebGraphicsContext3DProviderImpl::grContext() { |
| 29 return provider_->GrContext(); | 28 return provider_->GrContext(); |
| 30 } | 29 } |
| 31 | 30 |
| 32 gpu::Capabilities WebGraphicsContext3DProviderImpl::getCapabilities() { | 31 gpu::Capabilities WebGraphicsContext3DProviderImpl::getCapabilities() { |
| 33 return provider_->ContextCapabilities(); | 32 return provider_->ContextCapabilities(); |
| 34 } | 33 } |
| 35 | 34 |
| 36 void WebGraphicsContext3DProviderImpl::setLostContextCallback( | 35 void WebGraphicsContext3DProviderImpl::setLostContextCallback( |
| 37 blink::WebClosure c) { | 36 blink::WebClosure c) { |
| 38 provider_->SetLostContextCallback(c.TakeBaseCallback()); | 37 provider_->SetLostContextCallback(c.TakeBaseCallback()); |
| 39 } | 38 } |
| 40 | 39 |
| 41 void WebGraphicsContext3DProviderImpl::setErrorMessageCallback( | 40 void WebGraphicsContext3DProviderImpl::setErrorMessageCallback( |
| 42 blink::WebFunction<void(const char*, int32_t)> c) { | 41 blink::WebFunction<void(const char*, int32_t)> c) { |
| 43 provider_->ContextSupport()->SetErrorMessageCallback(c.TakeBaseCallback()); | 42 provider_->ContextSupport()->SetErrorMessageCallback(c.TakeBaseCallback()); |
| 44 } | 43 } |
| 45 | 44 |
| 46 } // namespace content | 45 } // namespace content |
| OLD | NEW |