| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_ | 5 #ifndef CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_ |
| 6 #define CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_ | 6 #define CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 | 9 |
| 10 #include "cc/resources/transferable_resource.h" | 10 #include "cc/resources/transferable_resource.h" |
| 11 #include "content/renderer/gpu/compositor_output_surface.h" | 11 #include "content/renderer/gpu/compositor_output_surface.h" |
| 12 #include "ui/gfx/size.h" | 12 #include "ui/gfx/size.h" |
| 13 | 13 |
| 14 namespace cc { | 14 namespace cc { |
| 15 class CompositorFrameAck; | 15 class CompositorFrameAck; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 | 19 |
| 20 // Implementation of CompositorOutputSurface that renders to textures which | 20 // Implementation of CompositorOutputSurface that renders to textures which |
| 21 // are sent to the browser through the mailbox extension. | 21 // are sent to the browser through the mailbox extension. |
| 22 // This class can be created only on the main thread, but then becomes pinned | 22 // This class can be created only on the main thread, but then becomes pinned |
| 23 // to a fixed thread when bindToClient is called. | 23 // to a fixed thread when bindToClient is called. |
| 24 class MailboxOutputSurface : public CompositorOutputSurface { | 24 class MailboxOutputSurface : public CompositorOutputSurface { |
| 25 public: | 25 public: |
| 26 MailboxOutputSurface(int32 routing_id, | 26 MailboxOutputSurface(int32 routing_id, |
| 27 uint32 output_surface_id, |
| 27 WebGraphicsContext3DCommandBufferImpl* context3d, | 28 WebGraphicsContext3DCommandBufferImpl* context3d, |
| 28 cc::SoftwareOutputDevice* software); | 29 cc::SoftwareOutputDevice* software); |
| 29 virtual ~MailboxOutputSurface(); | 30 virtual ~MailboxOutputSurface(); |
| 30 | 31 |
| 31 // cc::OutputSurface implementation. | 32 // cc::OutputSurface implementation. |
| 32 virtual void EnsureBackbuffer() OVERRIDE; | 33 virtual void EnsureBackbuffer() OVERRIDE; |
| 33 virtual void DiscardBackbuffer() OVERRIDE; | 34 virtual void DiscardBackbuffer() OVERRIDE; |
| 34 virtual void Reshape(gfx::Size size, float scale_factor) OVERRIDE; | 35 virtual void Reshape(gfx::Size size, float scale_factor) OVERRIDE; |
| 35 virtual void BindFramebuffer() OVERRIDE; | 36 virtual void BindFramebuffer() OVERRIDE; |
| 36 virtual void SwapBuffers(cc::CompositorFrame* frame) OVERRIDE; | 37 virtual void SwapBuffers(cc::CompositorFrame* frame) OVERRIDE; |
| 37 | 38 |
| 38 private: | 39 private: |
| 39 // CompositorOutputSurface overrides. | 40 // CompositorOutputSurface overrides. |
| 40 virtual void OnSwapAck(const cc::CompositorFrameAck& ack) OVERRIDE; | 41 virtual void OnSwapAck(uint32 output_surface_id, |
| 42 const cc::CompositorFrameAck& ack) OVERRIDE; |
| 41 | 43 |
| 42 size_t GetNumAcksPending(); | 44 size_t GetNumAcksPending(); |
| 43 | 45 |
| 44 struct TransferableFrame { | 46 struct TransferableFrame { |
| 45 TransferableFrame() : texture_id(0), sync_point(0) {} | 47 TransferableFrame() : texture_id(0), sync_point(0) {} |
| 46 | 48 |
| 47 TransferableFrame(uint32 texture_id, | 49 TransferableFrame(uint32 texture_id, |
| 48 const gpu::Mailbox& mailbox, | 50 const gpu::Mailbox& mailbox, |
| 49 const gfx::Size size) | 51 const gfx::Size size) |
| 50 : texture_id(texture_id), mailbox(mailbox), size(size), sync_point(0) {} | 52 : texture_id(texture_id), mailbox(mailbox), size(size), sync_point(0) {} |
| 51 | 53 |
| 52 uint32 texture_id; | 54 uint32 texture_id; |
| 53 gpu::Mailbox mailbox; | 55 gpu::Mailbox mailbox; |
| 54 gfx::Size size; | 56 gfx::Size size; |
| 55 uint32 sync_point; | 57 uint32 sync_point; |
| 56 }; | 58 }; |
| 57 | 59 |
| 58 TransferableFrame current_backing_; | 60 TransferableFrame current_backing_; |
| 59 std::deque<TransferableFrame> pending_textures_; | 61 std::deque<TransferableFrame> pending_textures_; |
| 60 std::queue<TransferableFrame> returned_textures_; | 62 std::queue<TransferableFrame> returned_textures_; |
| 61 | 63 |
| 62 uint32 fbo_; | 64 uint32 fbo_; |
| 63 bool is_backbuffer_discarded_; | 65 bool is_backbuffer_discarded_; |
| 64 }; | 66 }; |
| 65 | 67 |
| 66 } // namespace content | 68 } // namespace content |
| 67 | 69 |
| 68 #endif // CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_ | 70 #endif // CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_ |
| OLD | NEW |