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

Unified Diff: ui/compositor/compositor.cc

Issue 1177383005: cc: Add command line for frame production throttle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hope to be final patch Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | ui/gl/gl_switches.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/compositor/compositor.cc
diff --git a/ui/compositor/compositor.cc b/ui/compositor/compositor.cc
index d864a02eb51d59b4c57cb60d7272a44edb708e07..edc4622ff25ad13f3afe906e98fd5a1bf78783a4 100644
--- a/ui/compositor/compositor.cc
+++ b/ui/compositor/compositor.cc
@@ -93,8 +93,18 @@ Compositor::Compositor(gfx::AcceleratedWidget widget,
context_factory_->DoesCreateTestContexts() ? kTestRefreshRate
: kDefaultRefreshRate;
settings.main_frame_before_activation_enabled = false;
- settings.renderer_settings.disable_gpu_vsync =
- command_line->HasSwitch(switches::kDisableGpuVsync);
+ if (command_line->HasSwitch(switches::kDisableGpuVsync)) {
+ std::string display_vsync_string =
+ command_line->GetSwitchValueASCII(switches::kDisableGpuVsync);
+ if (display_vsync_string == "gpu") {
+ settings.renderer_settings.disable_display_vsync = true;
+ } else if (display_vsync_string == "beginframe") {
+ settings.wait_for_beginframe_interval = false;
+ } else {
+ settings.renderer_settings.disable_display_vsync = true;
+ settings.wait_for_beginframe_interval = false;
+ }
+ }
settings.renderer_settings.partial_swap_enabled =
!command_line->HasSwitch(cc::switches::kUIDisablePartialSwap);
#if defined(OS_WIN)
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | ui/gl/gl_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698