Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: ui/compositor/compositor.cc

Issue 164373012: Remove options to disable deadline scheduling (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | ui/compositor/compositor_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 root_web_layer_ = cc::Layer::Create(); 202 root_web_layer_ = cc::Layer::Create();
203 root_web_layer_->SetAnchorPoint(gfx::PointF(0.f, 0.f)); 203 root_web_layer_->SetAnchorPoint(gfx::PointF(0.f, 0.f));
204 204
205 CommandLine* command_line = CommandLine::ForCurrentProcess(); 205 CommandLine* command_line = CommandLine::ForCurrentProcess();
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 =
213 switches::IsUIDeadlineSchedulingEnabled();
214 settings.partial_swap_enabled = 212 settings.partial_swap_enabled =
215 !command_line->HasSwitch(cc::switches::kUIDisablePartialSwap); 213 !command_line->HasSwitch(cc::switches::kUIDisablePartialSwap);
216 #if defined(OS_CHROMEOS) 214 #if defined(OS_CHROMEOS)
217 settings.per_tile_painting_enabled = true; 215 settings.per_tile_painting_enabled = true;
218 #endif 216 #endif
219 217
220 // These flags should be mirrored by renderer versions in content/renderer/. 218 // These flags should be mirrored by renderer versions in content/renderer/.
221 settings.initial_debug_state.show_debug_borders = 219 settings.initial_debug_state.show_debug_borders =
222 command_line->HasSwitch(cc::switches::kUIShowCompositedLayerBorders); 220 command_line->HasSwitch(cc::switches::kUIShowCompositedLayerBorders);
223 settings.initial_debug_state.show_fps_counter = 221 settings.initial_debug_state.show_fps_counter =
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 // CompositorObservers to be notified before starting another 554 // CompositorObservers to be notified before starting another
557 // draw cycle. 555 // draw cycle.
558 ScheduleDraw(); 556 ScheduleDraw();
559 } 557 }
560 FOR_EACH_OBSERVER(CompositorObserver, 558 FOR_EACH_OBSERVER(CompositorObserver,
561 observer_list_, 559 observer_list_,
562 OnCompositingEnded(this)); 560 OnCompositingEnded(this));
563 } 561 }
564 562
565 } // namespace ui 563 } // namespace ui
OLDNEW
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | ui/compositor/compositor_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698