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 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 0, 100, | 365 0, 100, |
366 &max_unused_resource_memory_percentage)) { | 366 &max_unused_resource_memory_percentage)) { |
367 settings.max_unused_resource_memory_percentage = | 367 settings.max_unused_resource_memory_percentage = |
368 max_unused_resource_memory_percentage; | 368 max_unused_resource_memory_percentage; |
369 } | 369 } |
370 } | 370 } |
371 | 371 |
372 settings.strict_layer_property_change_checking = | 372 settings.strict_layer_property_change_checking = |
373 cmd->HasSwitch(cc::switches::kStrictLayerPropertyChangeChecking); | 373 cmd->HasSwitch(cc::switches::kStrictLayerPropertyChangeChecking); |
374 | 374 |
| 375 settings.renderer_settings.use_tile_compression = |
| 376 cmd->HasSwitch(cc::switches::kEnableTileCompression); |
| 377 |
375 #if defined(OS_ANDROID) | 378 #if defined(OS_ANDROID) |
376 SynchronousCompositorFactory* synchronous_compositor_factory = | 379 SynchronousCompositorFactory* synchronous_compositor_factory = |
377 SynchronousCompositorFactory::GetInstance(); | 380 SynchronousCompositorFactory::GetInstance(); |
378 | 381 |
379 // We can't use GPU rasterization on low-end devices, because the Ganesh | 382 // We can't use GPU rasterization on low-end devices, because the Ganesh |
380 // cache would consume too much memory. | 383 // cache would consume too much memory. |
381 if (base::SysInfo::IsLowEndDevice()) | 384 if (base::SysInfo::IsLowEndDevice()) |
382 settings.gpu_rasterization_enabled = false; | 385 settings.gpu_rasterization_enabled = false; |
383 settings.using_synchronous_renderer_compositor = | 386 settings.using_synchronous_renderer_compositor = |
384 synchronous_compositor_factory; | 387 synchronous_compositor_factory; |
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
999 return; | 1002 return; |
1000 provider->ContextGL()->RateLimitOffscreenContextCHROMIUM(); | 1003 provider->ContextGL()->RateLimitOffscreenContextCHROMIUM(); |
1001 } | 1004 } |
1002 | 1005 |
1003 void RenderWidgetCompositor::SetSurfaceIdNamespace( | 1006 void RenderWidgetCompositor::SetSurfaceIdNamespace( |
1004 uint32_t surface_id_namespace) { | 1007 uint32_t surface_id_namespace) { |
1005 layer_tree_host_->set_surface_id_namespace(surface_id_namespace); | 1008 layer_tree_host_->set_surface_id_namespace(surface_id_namespace); |
1006 } | 1009 } |
1007 | 1010 |
1008 } // namespace content | 1011 } // namespace content |
OLD | NEW |