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

Side by Side Diff: cc/layer_tree_settings.cc

Issue 12472028: Part 1 of cc/ directory shuffles: base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 "cc/layer_tree_settings.h" 5 #include "cc/layer_tree_settings.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/string_number_conversions.h" 11 #include "base/string_number_conversions.h"
12 #include "cc/switches.h" 12 #include "cc/base/switches.h"
13 13
14 namespace cc { 14 namespace cc {
15 15
16 LayerTreeSettings::LayerTreeSettings() 16 LayerTreeSettings::LayerTreeSettings()
17 : acceleratePainting(false) 17 : acceleratePainting(false)
18 , compositorFrameMessage(false) 18 , compositorFrameMessage(false)
19 , implSidePainting(false) 19 , implSidePainting(false)
20 , renderVSyncEnabled(true) 20 , renderVSyncEnabled(true)
21 , perTilePaintingEnabled(false) 21 , perTilePaintingEnabled(false)
22 , partialSwapEnabled(false) 22 , partialSwapEnabled(false)
(...skipping 27 matching lines...) Expand all
50 { 50 {
51 // TODO(danakj): Renable surface caching when we can do it more realiably. c rbug.com/170713 51 // TODO(danakj): Renable surface caching when we can do it more realiably. c rbug.com/170713
52 cacheRenderPassContents = false; 52 cacheRenderPassContents = false;
53 } 53 }
54 54
55 LayerTreeSettings::~LayerTreeSettings() 55 LayerTreeSettings::~LayerTreeSettings()
56 { 56 {
57 } 57 }
58 58
59 } // namespace cc 59 } // namespace cc
OLDNEW
« cc/cc.gyp ('K') | « cc/layer_tree_settings.h ('k') | cc/layer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698