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

Side by Side Diff: content/renderer/gpu/render_widget_compositor.cc

Issue 1197423003: Remaining code for basic tile compression functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable tile compression for one copy Created 5 years, 6 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
OLDNEW
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
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
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
OLDNEW
« cc/tiles/tile_manager.cc ('K') | « content/browser/renderer_host/render_process_host_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698