OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "content/renderer/gpu/render_widget_compositor.h" | 5 #include "content/renderer/gpu/render_widget_compositor.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #if defined(OS_ANDROID) | 10 #if defined(OS_ANDROID) |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 settings.throttle_frame_production = | 89 settings.throttle_frame_production = |
90 !cmd->HasSwitch(switches::kDisableGpuVsync); | 90 !cmd->HasSwitch(switches::kDisableGpuVsync); |
91 settings.begin_impl_frame_scheduling_enabled = | 91 settings.begin_impl_frame_scheduling_enabled = |
92 cmd->HasSwitch(switches::kEnableBeginFrameScheduling); | 92 cmd->HasSwitch(switches::kEnableBeginFrameScheduling); |
93 settings.deadline_scheduling_enabled = | 93 settings.deadline_scheduling_enabled = |
94 cmd->HasSwitch(switches::kEnableDeadlineScheduling) && | 94 cmd->HasSwitch(switches::kEnableDeadlineScheduling) && |
95 !cmd->HasSwitch(switches::kDisableDeadlineScheduling); | 95 !cmd->HasSwitch(switches::kDisableDeadlineScheduling); |
96 settings.using_synchronous_renderer_compositor = | 96 settings.using_synchronous_renderer_compositor = |
97 widget->UsingSynchronousRendererCompositor(); | 97 widget->UsingSynchronousRendererCompositor(); |
| 98 settings.per_tile_painting_enabled = |
| 99 cmd->HasSwitch(cc::switches::kEnablePerTilePainting); |
98 settings.accelerated_animation_enabled = | 100 settings.accelerated_animation_enabled = |
99 !cmd->HasSwitch(cc::switches::kDisableThreadedAnimation); | 101 !cmd->HasSwitch(cc::switches::kDisableThreadedAnimation); |
100 settings.touch_hit_testing = | 102 settings.touch_hit_testing = |
101 !cmd->HasSwitch(cc::switches::kDisableCompositorTouchHitTesting); | 103 !cmd->HasSwitch(cc::switches::kDisableCompositorTouchHitTesting); |
102 | 104 |
103 int default_tile_width = settings.default_tile_size.width(); | 105 int default_tile_width = settings.default_tile_size.width(); |
104 if (cmd->HasSwitch(switches::kDefaultTileWidth)) { | 106 if (cmd->HasSwitch(switches::kDefaultTileWidth)) { |
105 GetSwitchValueAsInt(*cmd, switches::kDefaultTileWidth, 1, | 107 GetSwitchValueAsInt(*cmd, switches::kDefaultTileWidth, 1, |
106 std::numeric_limits<int>::max(), &default_tile_width); | 108 std::numeric_limits<int>::max(), &default_tile_width); |
107 } | 109 } |
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 widget_->OnSwapBuffersAborted(); | 625 widget_->OnSwapBuffersAborted(); |
624 } | 626 } |
625 | 627 |
626 void RenderWidgetCompositor::RateLimitSharedMainThreadContext() { | 628 void RenderWidgetCompositor::RateLimitSharedMainThreadContext() { |
627 cc::ContextProvider* provider = | 629 cc::ContextProvider* provider = |
628 RenderThreadImpl::current()->SharedMainThreadContextProvider().get(); | 630 RenderThreadImpl::current()->SharedMainThreadContextProvider().get(); |
629 provider->ContextGL()->RateLimitOffscreenContextCHROMIUM(); | 631 provider->ContextGL()->RateLimitOffscreenContextCHROMIUM(); |
630 } | 632 } |
631 | 633 |
632 } // namespace content | 634 } // namespace content |
OLD | NEW |