| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SURFACE_H_ | 5 #ifndef CC_SURFACES_SURFACE_H_ |
| 6 #define CC_SURFACES_SURFACE_H_ | 6 #define CC_SURFACES_SURFACE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 void QueueFrame(CompositorFrame frame, const DrawCallback& draw_callback); | 54 void QueueFrame(CompositorFrame frame, const DrawCallback& draw_callback); |
| 55 void EvictFrame(); | 55 void EvictFrame(); |
| 56 void RequestCopyOfOutput(std::unique_ptr<CopyOutputRequest> copy_request); | 56 void RequestCopyOfOutput(std::unique_ptr<CopyOutputRequest> copy_request); |
| 57 // Adds each CopyOutputRequest in the current frame to copy_requests. The | 57 // Adds each CopyOutputRequest in the current frame to copy_requests. The |
| 58 // caller takes ownership of them. |copy_requests| is keyed by RenderPass ids. | 58 // caller takes ownership of them. |copy_requests| is keyed by RenderPass ids. |
| 59 void TakeCopyOutputRequests( | 59 void TakeCopyOutputRequests( |
| 60 std::multimap<int, std::unique_ptr<CopyOutputRequest>>* copy_requests); | 60 std::multimap<int, std::unique_ptr<CopyOutputRequest>>* copy_requests); |
| 61 | 61 |
| 62 // Returns the most recent frame that is eligible to be rendered. | 62 // Returns the most recent frame that is eligible to be rendered. |
| 63 // You must check whether HasFrame() returns true before calling this method. | 63 // You must check whether HasFrame() returns true before calling this method. |
| 64 const CompositorFrame& GetEligibleFrame(); | 64 const CompositorFrame& GetEligibleFrame() const; |
| 65 | 65 |
| 66 // Returns a number that increments by 1 every time a new frame is enqueued. | 66 // Returns a number that increments by 1 every time a new frame is enqueued. |
| 67 int frame_index() const { return frame_index_; } | 67 int frame_index() const { return frame_index_; } |
| 68 | 68 |
| 69 void TakeLatencyInfo(std::vector<ui::LatencyInfo>* latency_info); | 69 void TakeLatencyInfo(std::vector<ui::LatencyInfo>* latency_info); |
| 70 void RunDrawCallbacks(); | 70 void RunDrawCallbacks(); |
| 71 | 71 |
| 72 base::WeakPtr<SurfaceFactory> factory() { return factory_; } | 72 base::WeakPtr<SurfaceFactory> factory() { return factory_; } |
| 73 | 73 |
| 74 // Add a SurfaceSequence that must be satisfied before the Surface is | 74 // Add a SurfaceSequence that must be satisfied before the Surface is |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 std::vector<SurfaceId> referenced_surfaces_; | 113 std::vector<SurfaceId> referenced_surfaces_; |
| 114 | 114 |
| 115 DrawCallback draw_callback_; | 115 DrawCallback draw_callback_; |
| 116 | 116 |
| 117 DISALLOW_COPY_AND_ASSIGN(Surface); | 117 DISALLOW_COPY_AND_ASSIGN(Surface); |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 } // namespace cc | 120 } // namespace cc |
| 121 | 121 |
| 122 #endif // CC_SURFACES_SURFACE_H_ | 122 #endif // CC_SURFACES_SURFACE_H_ |
| OLD | NEW |