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_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/cancelable_callback.h" | 9 #include "base/cancelable_callback.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/containers/scoped_ptr_hash_map.h" | |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
14 #include "cc/resources/ui_resource_client.h" | |
15 #include "cc/trees/layer_tree_host_client.h" | 13 #include "cc/trees/layer_tree_host_client.h" |
16 #include "cc/trees/layer_tree_host_single_thread_client.h" | 14 #include "cc/trees/layer_tree_host_single_thread_client.h" |
17 #include "content/browser/android/ui_resource_provider_impl.h" | 15 #include "content/browser/android/ui_resource_provider_impl.h" |
18 #include "content/browser/renderer_host/image_transport_factory_android.h" | 16 #include "content/browser/renderer_host/image_transport_factory_android.h" |
19 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
20 #include "content/public/browser/android/compositor.h" | 18 #include "content/public/browser/android/compositor.h" |
21 #include "third_party/khronos/GLES2/gl2.h" | 19 #include "third_party/khronos/GLES2/gl2.h" |
| 20 #include "ui/base/android/system_ui_resource_manager.h" |
22 #include "ui/base/android/window_android_compositor.h" | 21 #include "ui/base/android/window_android_compositor.h" |
23 | 22 |
24 class SkBitmap; | 23 class SkBitmap; |
25 struct ANativeWindow; | 24 struct ANativeWindow; |
26 | 25 |
27 namespace cc { | 26 namespace cc { |
28 class Layer; | 27 class Layer; |
29 class LayerTreeHost; | 28 class LayerTreeHost; |
30 } | 29 } |
31 | 30 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 // ImageTransportFactoryAndroidObserver implementation. | 90 // ImageTransportFactoryAndroidObserver implementation. |
92 virtual void OnLostResources() OVERRIDE; | 91 virtual void OnLostResources() OVERRIDE; |
93 | 92 |
94 // WindowAndroidCompositor implementation. | 93 // WindowAndroidCompositor implementation. |
95 virtual void AttachLayerForReadback(scoped_refptr<cc::Layer> layer) OVERRIDE; | 94 virtual void AttachLayerForReadback(scoped_refptr<cc::Layer> layer) OVERRIDE; |
96 virtual void RequestCopyOfOutputOnRootLayer( | 95 virtual void RequestCopyOfOutputOnRootLayer( |
97 scoped_ptr<cc::CopyOutputRequest> request) OVERRIDE; | 96 scoped_ptr<cc::CopyOutputRequest> request) OVERRIDE; |
98 virtual void OnVSync(base::TimeTicks frame_time, | 97 virtual void OnVSync(base::TimeTicks frame_time, |
99 base::TimeDelta vsync_period) OVERRIDE; | 98 base::TimeDelta vsync_period) OVERRIDE; |
100 virtual void SetNeedsAnimate() OVERRIDE; | 99 virtual void SetNeedsAnimate() OVERRIDE; |
| 100 virtual ui::SystemUIResourceManager& GetSystemUIResourceManager() OVERRIDE; |
101 | 101 |
102 enum CompositingTrigger { | 102 enum CompositingTrigger { |
103 DO_NOT_COMPOSITE, | 103 DO_NOT_COMPOSITE, |
104 COMPOSITE_IMMEDIATELY, | 104 COMPOSITE_IMMEDIATELY, |
105 COMPOSITE_EVENTUALLY, | 105 COMPOSITE_EVENTUALLY, |
106 }; | 106 }; |
107 void PostComposite(CompositingTrigger trigger); | 107 void PostComposite(CompositingTrigger trigger); |
108 void Composite(CompositingTrigger trigger); | 108 void Composite(CompositingTrigger trigger); |
109 | 109 |
110 bool WillCompositeThisFrame() const { | 110 bool WillCompositeThisFrame() const { |
111 return current_composite_task_ && | 111 return current_composite_task_ && |
112 !current_composite_task_->callback().is_null(); | 112 !current_composite_task_->callback().is_null(); |
113 } | 113 } |
114 bool DidCompositeThisFrame() const { | 114 bool DidCompositeThisFrame() const { |
115 return current_composite_task_ && | 115 return current_composite_task_ && |
116 current_composite_task_->callback().is_null(); | 116 current_composite_task_->callback().is_null(); |
117 } | 117 } |
118 bool WillComposite() const { | 118 bool WillComposite() const { |
119 return WillCompositeThisFrame() || | 119 return WillCompositeThisFrame() || |
120 composite_on_vsync_trigger_ != DO_NOT_COMPOSITE; | 120 composite_on_vsync_trigger_ != DO_NOT_COMPOSITE; |
121 } | 121 } |
122 void CancelComposite() { | 122 void CancelComposite() { |
123 DCHECK(WillComposite()); | 123 DCHECK(WillComposite()); |
124 if (WillCompositeThisFrame()) | 124 if (WillCompositeThisFrame()) |
125 current_composite_task_->Cancel(); | 125 current_composite_task_->Cancel(); |
126 current_composite_task_.reset(); | 126 current_composite_task_.reset(); |
127 composite_on_vsync_trigger_ = DO_NOT_COMPOSITE; | 127 composite_on_vsync_trigger_ = DO_NOT_COMPOSITE; |
128 will_composite_immediately_ = false; | 128 will_composite_immediately_ = false; |
129 } | 129 } |
130 cc::UIResourceId GenerateUIResourceFromUIResourceBitmap( | |
131 const cc::UIResourceBitmap& bitmap, | |
132 bool is_transient); | |
133 void OnGpuChannelEstablished(); | 130 void OnGpuChannelEstablished(); |
134 | 131 |
135 scoped_refptr<cc::Layer> root_layer_; | 132 scoped_refptr<cc::Layer> root_layer_; |
136 scoped_ptr<cc::LayerTreeHost> host_; | 133 scoped_ptr<cc::LayerTreeHost> host_; |
137 content::UIResourceProviderImpl ui_resource_provider_; | 134 content::UIResourceProviderImpl ui_resource_provider_; |
138 | 135 |
139 gfx::Size size_; | 136 gfx::Size size_; |
140 bool has_transparent_background_; | 137 bool has_transparent_background_; |
141 float device_scale_factor_; | 138 float device_scale_factor_; |
142 | 139 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 base::TimeTicks last_vsync_; | 175 base::TimeTicks last_vsync_; |
179 | 176 |
180 base::WeakPtrFactory<CompositorImpl> weak_factory_; | 177 base::WeakPtrFactory<CompositorImpl> weak_factory_; |
181 | 178 |
182 DISALLOW_COPY_AND_ASSIGN(CompositorImpl); | 179 DISALLOW_COPY_AND_ASSIGN(CompositorImpl); |
183 }; | 180 }; |
184 | 181 |
185 } // namespace content | 182 } // namespace content |
186 | 183 |
187 #endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ | 184 #endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ |
OLD | NEW |