summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl
diff options
context:
space:
mode:
authorpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-27 01:18:35 +0000
committerpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-27 01:18:35 +0000
commit744e079897d430c91b18352c8e200bbeeadffe8b (patch)
tree2d75297b938cd2e21586455340240c5b9e88bf32 /ppapi/shared_impl
parent7ba34a0114537b08164b4f44943ec5c25aac9417 (diff)
downloadchromium_src-744e079897d430c91b18352c8e200bbeeadffe8b.zip
chromium_src-744e079897d430c91b18352c8e200bbeeadffe8b.tar.gz
chromium_src-744e079897d430c91b18352c8e200bbeeadffe8b.tar.bz2
Make *CommandBufferProxy* implement GpuControl
GpuControl is where we will pipe out-of-band stuff, that is currently done in each of the WGC3D implementations, but we want to move down into GLES2Implementation. This is essentially just a refactoring, since the current GpuControl only deals with GpuMemoryBuffer that's not available out-of-process, but we can then add things like GenerateMailboxes, Ensure/DiscardBackbuffer or callback stuff on top. BUG=181120 R=dmichael@chromium.org, sievers@chromium.org Review URL: https://codereview.chromium.org/24711002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225627 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/shared_impl')
-rw-r--r--ppapi/shared_impl/ppb_graphics_3d_shared.cc3
-rw-r--r--ppapi/shared_impl/ppb_graphics_3d_shared.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/ppapi/shared_impl/ppb_graphics_3d_shared.cc b/ppapi/shared_impl/ppb_graphics_3d_shared.cc
index e24a13c..1f412d8 100644
--- a/ppapi/shared_impl/ppb_graphics_3d_shared.cc
+++ b/ppapi/shared_impl/ppb_graphics_3d_shared.cc
@@ -129,8 +129,7 @@ bool PPB_Graphics3D_Shared::CreateGLES2Impl(
share_gles2 ? share_gles2->share_group() : NULL,
transfer_buffer_.get(),
true,
- NULL // Do not use GpuMemoryBuffers.
- ));
+ GetGpuControl()));
if (!gles2_impl_->Initialize(
transfer_buffer_size,
diff --git a/ppapi/shared_impl/ppb_graphics_3d_shared.h b/ppapi/shared_impl/ppb_graphics_3d_shared.h
index 482cb4c..c51c99b 100644
--- a/ppapi/shared_impl/ppb_graphics_3d_shared.h
+++ b/ppapi/shared_impl/ppb_graphics_3d_shared.h
@@ -15,6 +15,7 @@
namespace gpu {
class CommandBuffer;
+class GpuControl;
class TransferBuffer;
namespace gles2 {
class GLES2CmdHelper;
@@ -85,6 +86,7 @@ class PPAPI_SHARED_EXPORT PPB_Graphics3D_Shared
virtual ~PPB_Graphics3D_Shared();
virtual gpu::CommandBuffer* GetCommandBuffer() = 0;
+ virtual gpu::GpuControl* GetGpuControl() = 0;
virtual int32 DoSwapBuffers() = 0;
bool HasPendingSwap() const;