Index: content/common/gpu/texture_image_transport_surface.h |
diff --git a/content/common/gpu/texture_image_transport_surface.h b/content/common/gpu/texture_image_transport_surface.h |
index 150b5858bee835654f2c30450af813d46b882401..45013472ef53056d96c28d5aacb22d39950619b4 100644 |
--- a/content/common/gpu/texture_image_transport_surface.h |
+++ b/content/common/gpu/texture_image_transport_surface.h |
@@ -6,10 +6,11 @@ |
#define CONTENT_COMMON_GPU_TEXTURE_IMAGE_TRANSPORT_SURFACE_H_ |
#include "base/basictypes.h" |
-#include "base/memory/weak_ptr.h" |
#include "content/common/gpu/gpu_command_buffer_stub.h" |
#include "content/common/gpu/image_transport_surface.h" |
+#include "gpu/command_buffer/service/mailbox_manager.h" |
#include "gpu/command_buffer/service/texture_manager.h" |
+#include "ui/gl/gl_context.h" |
#include "ui/gl/gl_surface.h" |
namespace content { |
@@ -18,8 +19,7 @@ class GpuChannelManager; |
class TextureImageTransportSurface : |
public ImageTransportSurface, |
public GpuCommandBufferStub::DestructionObserver, |
- public gfx::GLSurface, |
- public base::SupportsWeakPtr<TextureImageTransportSurface> { |
+ public gfx::GLSurface { |
public: |
TextureImageTransportSurface(GpuChannelManager* manager, |
GpuCommandBufferStub* stub, |
@@ -48,57 +48,53 @@ class TextureImageTransportSurface : |
protected: |
// ImageTransportSurface implementation. |
virtual void OnBufferPresented( |
- bool presented, |
+ uint64 surface_handle, |
uint32 sync_point) OVERRIDE; |
virtual void OnResizeViewACK() OVERRIDE; |
- virtual void OnSetFrontSurfaceIsProtected( |
- bool is_protected, |
- uint32 protection_state_id) OVERRIDE; |
virtual void OnResize(gfx::Size size) OVERRIDE; |
// GpuCommandBufferStub::DestructionObserver implementation. |
virtual void OnWillDestroyStub(GpuCommandBufferStub* stub) OVERRIDE; |
private: |
- // A texture backing the front/back buffer in the parent stub. |
+ // A texture backing the front/back buffer. |
struct Texture { |
Texture(); |
~Texture(); |
- // The client-side id in the parent stub. |
- uint32 client_id; |
- |
// The currently allocated size. |
gfx::Size size; |
- // Whether or not that texture has been sent to the client yet. |
- bool sent_to_client; |
+ // The actual GL texture id. |
+ uint32 service_id; |
- // The texture info in the parent stub. |
- gpu::gles2::TextureManager::TextureInfo::Ref info; |
+ // The surface handle for this texture (only 1 and 2 are valid). |
+ uint64 surface_handle; |
}; |
virtual ~TextureImageTransportSurface(); |
- void CreateBackTexture(const gfx::Size& size); |
+ void CreateBackTexture(); |
void AttachBackTextureToFBO(); |
- void ReleaseTexture(int id); |
- void ReleaseParentStub(); |
- void AdjustFrontBufferAllocation(); |
- void BufferPresentedImpl(bool presented); |
- int front() const { return front_; } |
- int back() const { return 1 - front_; } |
+ void ReleaseBackTexture(); |
+ void BufferPresentedImpl(uint64 surface_handle); |
+ void ProduceTexture(Texture& texture); |
+ void ConsumeTexture(Texture& texture); |
+ |
+ gpu::gles2::MailboxName& mailbox_name(uint64 surface_handle) { |
+ DCHECK(surface_handle == 1 || surface_handle == 2); |
+ return mailbox_names_[surface_handle - 1]; |
+ } |
// The framebuffer that represents this surface (service id). Allocated lazily |
// in OnMakeCurrent. |
uint32 fbo_id_; |
- // The front and back buffers. |
- Texture textures_[2]; |
- |
- gfx::Rect previous_damage_rect_; |
+ // The current backbuffer. |
+ Texture backbuffer_; |
- // Indicates which of the 2 above is the front buffer. |
- int front_; |
+ // The current size of the GLSurface. Used to disambiguate from the current |
+ // texture size which might be outdated (since we use two buffers). |
+ gfx::Size current_size_; |
// Whether or not the command buffer stub has been destroyed. |
bool stub_destroyed_; |
@@ -106,16 +102,15 @@ class TextureImageTransportSurface : |
bool backbuffer_suggested_allocation_; |
bool frontbuffer_suggested_allocation_; |
- bool frontbuffer_is_protected_; |
- uint32 protection_state_id_; |
- |
scoped_ptr<ImageTransportHelper> helper_; |
gfx::GLSurfaceHandle handle_; |
- GpuCommandBufferStub* parent_stub_; |
// The offscreen surface used to make the context current. However note that |
// the actual rendering is always redirected to an FBO. |
- scoped_refptr<GLSurface> surface_; |
+ scoped_refptr<gfx::GLSurface> surface_; |
+ |
+ // Holds a reference to the underlying context for cleanup. |
+ scoped_refptr<gfx::GLContext> context_; |
// Whether a SwapBuffers is pending. |
bool is_swap_buffers_pending_; |
@@ -123,9 +118,11 @@ class TextureImageTransportSurface : |
// Whether we unscheduled command buffer because of pending SwapBuffers. |
bool did_unschedule_; |
- // Whether or not the buffer flip went through browser side on the last |
- // swap or post sub buffer. |
- bool did_flip_; |
+ // The mailbox names used for texture exchange. Uses surface_handle as key. |
+ gpu::gles2::MailboxName mailbox_names_[2]; |
+ |
+ // Holds a reference to the mailbox manager for cleanup. |
+ scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager_; |
DISALLOW_COPY_AND_ASSIGN(TextureImageTransportSurface); |
}; |