OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ |
6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ | 6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
61 | 61 |
62 // "On demand" hardware draw. Parameters are used by compositor for this draw. | 62 // "On demand" hardware draw. Parameters are used by compositor for this draw. |
63 // |viewport_size| is the current size to improve results during resize. | 63 // |viewport_size| is the current size to improve results during resize. |
64 // |viewport_rect_for_tile_priority| and |transform_for_tile_priority| are | 64 // |viewport_rect_for_tile_priority| and |transform_for_tile_priority| are |
65 // used to customize the tiling decisions of compositor. | 65 // used to customize the tiling decisions of compositor. |
66 virtual Frame DemandDrawHw( | 66 virtual Frame DemandDrawHw( |
67 const gfx::Size& viewport_size, | 67 const gfx::Size& viewport_size, |
68 const gfx::Rect& viewport_rect_for_tile_priority, | 68 const gfx::Rect& viewport_rect_for_tile_priority, |
69 const gfx::Transform& transform_for_tile_priority) = 0; | 69 const gfx::Transform& transform_for_tile_priority) = 0; |
70 | 70 |
71 virtual Frame DemandDrawHw_Async( | |
boliu
2016/08/11 19:23:40
add some documentation
ojars
2016/08/23 02:15:42
Done.
| |
72 const gfx::Size& viewport_size, | |
73 const gfx::Rect& viewport_rect_for_tile_priority, | |
74 const gfx::Transform& transform_for_tile_priority) = 0; | |
boliu
2016/08/11 19:23:40
blank line below
ojars
2016/08/23 02:15:42
Done.
| |
71 // For delegated rendering, return resources from parent compositor to this. | 75 // For delegated rendering, return resources from parent compositor to this. |
72 // Note that all resources must be returned before ReleaseHwDraw. | 76 // Note that all resources must be returned before ReleaseHwDraw. |
73 virtual void ReturnResources(uint32_t output_surface_id, | 77 virtual void ReturnResources(uint32_t output_surface_id, |
74 const cc::ReturnedResourceArray& resources) = 0; | 78 const cc::ReturnedResourceArray& resources) = 0; |
75 | 79 |
76 // "On demand" SW draw, into the supplied canvas (observing the transform | 80 // "On demand" SW draw, into the supplied canvas (observing the transform |
77 // and clip set there-in). | 81 // and clip set there-in). |
78 virtual bool DemandDrawSw(SkCanvas* canvas) = 0; | 82 virtual bool DemandDrawSw(SkCanvas* canvas) = 0; |
79 | 83 |
80 // Set the memory limit policy of this compositor. | 84 // Set the memory limit policy of this compositor. |
(...skipping 13 matching lines...) Expand all Loading... | |
94 // and if any input animation is active, it should tick now. | 98 // and if any input animation is active, it should tick now. |
95 virtual void OnComputeScroll(base::TimeTicks animation_time) = 0; | 99 virtual void OnComputeScroll(base::TimeTicks animation_time) = 0; |
96 | 100 |
97 protected: | 101 protected: |
98 virtual ~SynchronousCompositor() {} | 102 virtual ~SynchronousCompositor() {} |
99 }; | 103 }; |
100 | 104 |
101 } // namespace content | 105 } // namespace content |
102 | 106 |
103 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ | 107 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ |
OLD | NEW |