| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_CLIENT_H_ | 5 #ifndef CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_CLIENT_H_ |
| 6 #define CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_CLIENT_H_ | 6 #define CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_CLIENT_H_ |
| 7 | 7 |
| 8 #include "cc/resources/returned_resource.h" | 8 #include "cc/resources/returned_resource.h" |
| 9 | 9 |
| 10 namespace gfx { |
| 11 class Rect; |
| 12 } |
| 13 |
| 10 namespace cc { | 14 namespace cc { |
| 11 | 15 |
| 16 class LocalSurfaceId; |
| 17 |
| 12 struct BeginFrameArgs; | 18 struct BeginFrameArgs; |
| 13 | 19 |
| 14 class CompositorFrameSinkSupportClient { | 20 class CompositorFrameSinkSupportClient { |
| 15 public: | 21 public: |
| 16 // Notification that the previous CompositorFrame given to | 22 // Notification that the previous CompositorFrame given to |
| 17 // SubmitCompositorFrame() has been processed and that another frame | 23 // SubmitCompositorFrame() has been processed and that another frame |
| 18 // can be submitted. This provides backpressure from the display compositor | 24 // can be submitted. This provides backpressure from the display compositor |
| 19 // so that frames are submitted only at the rate it can handle them. | 25 // so that frames are submitted only at the rate it can handle them. |
| 20 // TODO(fsamuel): This method ought not be necessary with unified BeginFrame. | 26 // TODO(fsamuel): This method ought not be necessary with unified BeginFrame. |
| 21 // However, there's a fair amount of cleanup and refactoring necessary to get | 27 // However, there's a fair amount of cleanup and refactoring necessary to get |
| 22 // rid of it. | 28 // rid of it. |
| 23 virtual void DidReceiveCompositorFrameAck() = 0; | 29 virtual void DidReceiveCompositorFrameAck() = 0; |
| 24 | 30 |
| 25 // Notification for the client to generate a CompositorFrame. | 31 // Notification for the client to generate a CompositorFrame. |
| 26 virtual void OnBeginFrame(const BeginFrameArgs& args) = 0; | 32 virtual void OnBeginFrame(const BeginFrameArgs& args) = 0; |
| 27 | 33 |
| 28 // Returns resources sent to SubmitCompositorFrame to be reused or freed. | 34 // Returns resources sent to SubmitCompositorFrame to be reused or freed. |
| 29 virtual void ReclaimResources(const ReturnedResourceArray& resources) = 0; | 35 virtual void ReclaimResources(const ReturnedResourceArray& resources) = 0; |
| 30 | 36 |
| 31 // Called when surface is being scheduled for a draw. | 37 // Called when surface is being scheduled for a draw. |
| 32 virtual void WillDrawSurface() = 0; | 38 virtual void WillDrawSurface(const LocalSurfaceId& local_surface_id, |
| 39 const gfx::Rect& damage_rect) = 0; |
| 33 | 40 |
| 34 protected: | 41 protected: |
| 35 virtual ~CompositorFrameSinkSupportClient() {} | 42 virtual ~CompositorFrameSinkSupportClient() {} |
| 36 }; | 43 }; |
| 37 | 44 |
| 38 } // namespace cc | 45 } // namespace cc |
| 39 | 46 |
| 40 #endif // CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_CLIENT_H_ | 47 #endif // CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_CLIENT_H_ |
| OLD | NEW |