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

Unified Diff: cc/layer_tree_settings.cc

Issue 11529003: [cc] Route LayerImpl::layerTreeHostImpl() calls through LayerTreeImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years 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 | « cc/layer_tree_settings.h ('k') | cc/picture_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layer_tree_settings.cc
diff --git a/cc/layer_tree_settings.cc b/cc/layer_tree_settings.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5f7d8fee5efed64513a541713ca2a3ea2454ff05
--- /dev/null
+++ b/cc/layer_tree_settings.cc
@@ -0,0 +1,67 @@
+// Copyright 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "cc/layer_tree_settings.h"
+
+#include <limits>
+
+#include "base/command_line.h"
+#include "base/logging.h"
+#include "base/string_number_conversions.h"
+#include "cc/switches.h"
+
+namespace cc {
+
+LayerTreeSettings::LayerTreeSettings()
+ : acceleratePainting(false)
+ , implSidePainting(false)
+ , renderVSyncEnabled(true)
+ , perTilePaintingEnabled(false)
+ , partialSwapEnabled(false)
+ , acceleratedAnimationEnabled(true)
+ , pageScalePinchZoomEnabled(false)
+ , backgroundColorInsteadOfCheckerboard(false)
+ , showOverdrawInTracing(false)
+ , refreshRate(0)
+ , maxPartialTextureUpdates(std::numeric_limits<size_t>::max())
+ , numRasterThreads(1)
+ , defaultTileSize(gfx::Size(256, 256))
+ , maxUntiledLayerSize(gfx::Size(512, 512))
+ , minimumOcclusionTrackingSize(gfx::Size(160, 160))
+{
+ // TODO(danakj): Move this to chromium when we don't go through the WebKit API anymore.
+ implSidePainting = CommandLine::ForCurrentProcess()->HasSwitch(cc::switches::kEnableImplSidePainting);
+ partialSwapEnabled = CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnablePartialSwap);
+ backgroundColorInsteadOfCheckerboard = CommandLine::ForCurrentProcess()->HasSwitch(switches::kBackgroundColorInsteadOfCheckerboard);
+ showOverdrawInTracing = CommandLine::ForCurrentProcess()->HasSwitch(switches::kTraceOverdraw);
+
+ initialDebugState.showPropertyChangedRects = CommandLine::ForCurrentProcess()->HasSwitch(cc::switches::kShowPropertyChangedRects);
+ initialDebugState.showSurfaceDamageRects = CommandLine::ForCurrentProcess()->HasSwitch(cc::switches::kShowSurfaceDamageRects);
+ initialDebugState.showScreenSpaceRects = CommandLine::ForCurrentProcess()->HasSwitch(cc::switches::kShowScreenSpaceRects);
+ initialDebugState.showReplicaScreenSpaceRects = CommandLine::ForCurrentProcess()->HasSwitch(cc::switches::kShowReplicaScreenSpaceRects);
+ initialDebugState.showOccludingRects = CommandLine::ForCurrentProcess()->HasSwitch(cc::switches::kShowOccludingRects);
+ initialDebugState.showNonOccludingRects = CommandLine::ForCurrentProcess()->HasSwitch(cc::switches::kShowNonOccludingRects);
+
+ if (CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kNumRasterThreads)) {
+ const size_t kMaxRasterThreads = 64;
+ std::string num_raster_threads =
+ CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
+ switches::kNumRasterThreads);
+ int num_threads;
+ if (base::StringToInt(num_raster_threads, &num_threads) &&
+ num_threads > 0 && num_threads <= kMaxRasterThreads) {
+ numRasterThreads = num_threads;
+ } else {
+ LOG(WARNING) << "Bad number of raster threads: " <<
+ num_raster_threads;
+ }
+ }
+}
+
+LayerTreeSettings::~LayerTreeSettings()
+{
+}
+
+} // namespace cc
« no previous file with comments | « cc/layer_tree_settings.h ('k') | cc/picture_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698