Index: content/browser/compositor/offscreen_browser_compositor_output_surface.cc |
diff --git a/content/browser/compositor/offscreen_browser_compositor_output_surface.cc b/content/browser/compositor/offscreen_browser_compositor_output_surface.cc |
index 9fa502684c74517388c4566f60e116647be7f92f..c8afb5d487b5ff9b12ec02ccbfeab43fe79b708d 100644 |
--- a/content/browser/compositor/offscreen_browser_compositor_output_surface.cc |
+++ b/content/browser/compositor/offscreen_browser_compositor_output_surface.cc |
@@ -11,8 +11,10 @@ |
#include "cc/output/output_surface_client.h" |
#include "cc/resources/resource_provider.h" |
#include "content/browser/compositor/browser_compositor_overlay_candidate_validator.h" |
+#include "content/browser/compositor/owned_mailbox.h" |
#include "content/browser/compositor/reflector_impl.h" |
#include "content/common/gpu/client/context_provider_command_buffer.h" |
+#include "content/common/gpu/client/gl_helper.h" |
#include "content/public/browser/browser_thread.h" |
#include "gpu/command_buffer/client/context_support.h" |
#include "gpu/command_buffer/client/gles2_interface.h" |
@@ -52,10 +54,19 @@ void OffscreenBrowserCompositorOutputSurface::EnsureBackbuffer() { |
is_backbuffer_discarded_ = false; |
if (!backing_texture_id_) { |
+ GLHelper* shared_helper = |
+ ImageTransportFactory::GetInstance()->GetGLHelper(); |
+ mailbox_ = new OwnedMailbox(shared_helper); |
GLES2Interface* gl = context_provider_->ContextGL(); |
- cc::ResourceFormat format = cc::RGBA_8888; |
- gl->GenTextures(1, &backing_texture_id_); |
+ offline_compositor_gl_helper_.reset( |
+ new GLHelper(gl, context_provider()->ContextSupport())); |
+ |
+ backing_texture_id_ = |
+ offline_compositor_gl_helper_->ConsumeMailboxToTexture( |
+ mailbox_->mailbox(), mailbox_->sync_point()); |
+ |
+ cc::ResourceFormat format = cc::RGBA_8888; |
gl->BindTexture(GL_TEXTURE_2D, backing_texture_id_); |
gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); |
@@ -64,6 +75,13 @@ void OffscreenBrowserCompositorOutputSurface::EnsureBackbuffer() { |
gl->TexImage2D(GL_TEXTURE_2D, 0, GLInternalFormat(format), |
surface_size_.width(), surface_size_.height(), 0, |
GLDataFormat(format), GLDataType(format), nullptr); |
+ if (!fbo_) |
+ gl->GenFramebuffers(1, &fbo_); |
+ |
+ gl->BindFramebuffer(GL_FRAMEBUFFER, fbo_); |
+ gl->FramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, |
+ GL_TEXTURE_2D, backing_texture_id_, 0); |
+ reflector_->OnSourceTextureMailboxUpdated(mailbox_); |
} |
} |
@@ -73,8 +91,10 @@ void OffscreenBrowserCompositorOutputSurface::DiscardBackbuffer() { |
GLES2Interface* gl = context_provider_->ContextGL(); |
if (backing_texture_id_) { |
- gl->DeleteTextures(1, &backing_texture_id_); |
+ mailbox_ = nullptr; |
backing_texture_id_ = 0; |
+ if (reflector_) |
+ reflector_->OnSourceTextureMailboxUpdated(mailbox_); |
} |
if (fbo_) { |
@@ -96,23 +116,18 @@ void OffscreenBrowserCompositorOutputSurface::Reshape(const gfx::Size& size, |
} |
void OffscreenBrowserCompositorOutputSurface::BindFramebuffer() { |
+ bool need_to_bind = !!backing_texture_id_; |
EnsureBackbuffer(); |
DCHECK(backing_texture_id_); |
- GLES2Interface* gl = context_provider_->ContextGL(); |
- |
- if (!fbo_) |
- gl->GenFramebuffers(1, &fbo_); |
- gl->BindFramebuffer(GL_FRAMEBUFFER, fbo_); |
- gl->FramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, |
- backing_texture_id_, 0); |
+ if (need_to_bind) { |
+ GLES2Interface* gl = context_provider_->ContextGL(); |
+ gl->BindFramebuffer(GL_FRAMEBUFFER, fbo_); |
+ } |
} |
void OffscreenBrowserCompositorOutputSurface::SwapBuffers( |
cc::CompositorFrame* frame) { |
- // TODO(oshima): Pass the texture to the reflector so that the |
- // reflector can simply use and draw it on their surface instead of |
- // copying the texture. |
if (reflector_) { |
if (frame->gl_frame_data->sub_buffer_rect == |
gfx::Rect(frame->gl_frame_data->size)) |
@@ -122,13 +137,17 @@ void OffscreenBrowserCompositorOutputSurface::SwapBuffers( |
} |
client_->DidSwapBuffers(); |
+} |
+ |
+void OffscreenBrowserCompositorOutputSurface::OnReflectorChanged() { |
+ if (reflector_) |
+ EnsureBackbuffer(); |
+} |
- // TODO(oshima): sync with the reflector's SwapBuffersComplete. |
- uint32_t sync_point = |
- context_provider_->ContextGL()->InsertSyncPointCHROMIUM(); |
- context_provider_->ContextSupport()->SignalSyncPoint( |
- sync_point, base::Bind(&OutputSurface::OnSwapBuffersComplete, |
- weak_ptr_factory_.GetWeakPtr())); |
+base::Closure |
+OffscreenBrowserCompositorOutputSurface::CreateCompositionStartedCallback() { |
+ return base::Bind(&OutputSurface::OnSwapBuffersComplete, |
+ weak_ptr_factory_.GetWeakPtr()); |
} |
#if defined(OS_MACOSX) |