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 #include "ui/compositor/compositor.h" | 5 #include "ui/compositor/compositor.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <deque> | 8 #include <deque> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 | 206 |
207 cc::LayerTreeSettings settings; | 207 cc::LayerTreeSettings settings; |
208 settings.refresh_rate = | 208 settings.refresh_rate = |
209 ContextFactory::GetInstance()->DoesCreateTestContexts() | 209 ContextFactory::GetInstance()->DoesCreateTestContexts() |
210 ? kTestRefreshRate | 210 ? kTestRefreshRate |
211 : kDefaultRefreshRate; | 211 : kDefaultRefreshRate; |
212 settings.deadline_scheduling_enabled = | 212 settings.deadline_scheduling_enabled = |
213 switches::IsUIDeadlineSchedulingEnabled(); | 213 switches::IsUIDeadlineSchedulingEnabled(); |
214 settings.partial_swap_enabled = | 214 settings.partial_swap_enabled = |
215 !command_line->HasSwitch(cc::switches::kUIDisablePartialSwap); | 215 !command_line->HasSwitch(cc::switches::kUIDisablePartialSwap); |
216 settings.per_tile_painting_enabled = | 216 #if defined(OS_CHROMEOS) |
217 command_line->HasSwitch(cc::switches::kUIEnablePerTilePainting); | 217 settings.per_tile_painting_enabled = true; |
| 218 #endif |
218 | 219 |
219 // These flags should be mirrored by renderer versions in content/renderer/. | 220 // These flags should be mirrored by renderer versions in content/renderer/. |
220 settings.initial_debug_state.show_debug_borders = | 221 settings.initial_debug_state.show_debug_borders = |
221 command_line->HasSwitch(cc::switches::kUIShowCompositedLayerBorders); | 222 command_line->HasSwitch(cc::switches::kUIShowCompositedLayerBorders); |
222 settings.initial_debug_state.show_fps_counter = | 223 settings.initial_debug_state.show_fps_counter = |
223 command_line->HasSwitch(cc::switches::kUIShowFPSCounter); | 224 command_line->HasSwitch(cc::switches::kUIShowFPSCounter); |
224 settings.initial_debug_state.show_layer_animation_bounds_rects = | 225 settings.initial_debug_state.show_layer_animation_bounds_rects = |
225 command_line->HasSwitch(cc::switches::kUIShowLayerAnimationBounds); | 226 command_line->HasSwitch(cc::switches::kUIShowLayerAnimationBounds); |
226 settings.initial_debug_state.show_paint_rects = | 227 settings.initial_debug_state.show_paint_rects = |
227 command_line->HasSwitch(switches::kUIShowPaintRects); | 228 command_line->HasSwitch(switches::kUIShowPaintRects); |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 // CompositorObservers to be notified before starting another | 556 // CompositorObservers to be notified before starting another |
556 // draw cycle. | 557 // draw cycle. |
557 ScheduleDraw(); | 558 ScheduleDraw(); |
558 } | 559 } |
559 FOR_EACH_OBSERVER(CompositorObserver, | 560 FOR_EACH_OBSERVER(CompositorObserver, |
560 observer_list_, | 561 observer_list_, |
561 OnCompositingEnded(this)); | 562 OnCompositingEnded(this)); |
562 } | 563 } |
563 | 564 |
564 } // namespace ui | 565 } // namespace ui |
OLD | NEW |