| OLD | NEW |
| 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 #ifndef CC_LAYER_TREE_HOST_H_ | 5 #ifndef CC_LAYER_TREE_HOST_H_ |
| 6 #define CC_LAYER_TREE_HOST_H_ | 6 #define CC_LAYER_TREE_HOST_H_ |
| 7 | 7 |
| 8 #include <limits> | 8 #include <limits> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 class ResourceUpdateQueue; | 48 class ResourceUpdateQueue; |
| 49 class HeadsUpDisplayLayer; | 49 class HeadsUpDisplayLayer; |
| 50 class Region; | 50 class Region; |
| 51 struct ScrollAndScaleSet; | 51 struct ScrollAndScaleSet; |
| 52 | 52 |
| 53 struct CC_EXPORT LayerTreeSettings { | 53 struct CC_EXPORT LayerTreeSettings { |
| 54 LayerTreeSettings(); | 54 LayerTreeSettings(); |
| 55 ~LayerTreeSettings(); | 55 ~LayerTreeSettings(); |
| 56 | 56 |
| 57 bool acceleratePainting; | 57 bool acceleratePainting; |
| 58 bool showDebugBorders; |
| 58 bool showPlatformLayerTree; | 59 bool showPlatformLayerTree; |
| 59 bool showPaintRects; | 60 bool showPaintRects; |
| 60 bool showPropertyChangedRects; | 61 bool showPropertyChangedRects; |
| 61 bool showSurfaceDamageRects; | 62 bool showSurfaceDamageRects; |
| 62 bool showScreenSpaceRects; | 63 bool showScreenSpaceRects; |
| 63 bool showReplicaScreenSpaceRects; | 64 bool showReplicaScreenSpaceRects; |
| 64 bool showOccludingRects; | 65 bool showOccludingRects; |
| 65 bool renderVSyncEnabled; | 66 bool renderVSyncEnabled; |
| 66 bool perTilePaintingEnabled; | 67 bool perTilePaintingEnabled; |
| 67 bool partialSwapEnabled; | 68 bool partialSwapEnabled; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 size_t m_partialTextureUpdateRequests; | 294 size_t m_partialTextureUpdateRequests; |
| 294 | 295 |
| 295 static bool s_needsFilterContext; | 296 static bool s_needsFilterContext; |
| 296 | 297 |
| 297 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 298 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
| 298 }; | 299 }; |
| 299 | 300 |
| 300 } // namespace cc | 301 } // namespace cc |
| 301 | 302 |
| 302 #endif // CC_LAYER_TREE_HOST_H_ | 303 #endif // CC_LAYER_TREE_HOST_H_ |
| OLD | NEW |