| 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 "cc/blink/context_provider_web_context.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| 11 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl( | 11 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl( |
| 12 scoped_refptr<cc_blink::ContextProviderWebContext> provider) | 12 scoped_refptr<cc_blink::ContextProviderWebContext> provider) |
| 13 : provider_(provider) { | 13 : provider_(provider) { |
| 14 } | 14 } |
| 15 | 15 |
| 16 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {} | 16 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {} |
| 17 | 17 |
| 18 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { | 18 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { |
| 19 DCHECK_EQ(!!provider_->WebContext3D(), !!provider_->ContextGL()); | |
| 20 return provider_->WebContext3D(); | 19 return provider_->WebContext3D(); |
| 21 } | 20 } |
| 22 | 21 |
| 23 gpu::gles2::GLES2Interface* WebGraphicsContext3DProviderImpl::contextGL() { | 22 gpu::gles2::GLES2Interface* WebGraphicsContext3DProviderImpl::contextGL() { |
| 24 DCHECK_EQ(!!provider_->WebContext3D(), !!provider_->ContextGL()); | |
| 25 return provider_->ContextGL(); | 23 return provider_->ContextGL(); |
| 26 } | 24 } |
| 27 | 25 |
| 28 GrContext* WebGraphicsContext3DProviderImpl::grContext() { | 26 GrContext* WebGraphicsContext3DProviderImpl::grContext() { |
| 29 return provider_->GrContext(); | 27 return provider_->GrContext(); |
| 30 } | 28 } |
| 31 | 29 |
| 32 } // namespace content | 30 } // namespace content |
| OLD | NEW |