OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/base/switches.h" | 5 #include "cc/base/switches.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace cc { | 9 namespace cc { |
10 namespace switches { | 10 namespace switches { |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 // layer. | 92 // layer. |
93 const char kShowScreenSpaceRects[] = "show-screenspace-rects"; | 93 const char kShowScreenSpaceRects[] = "show-screenspace-rects"; |
94 const char kUIShowScreenSpaceRects[] = "ui-show-screenspace-rects"; | 94 const char kUIShowScreenSpaceRects[] = "ui-show-screenspace-rects"; |
95 | 95 |
96 // Show rects in the HUD around the screen-space transformed bounds of every | 96 // Show rects in the HUD around the screen-space transformed bounds of every |
97 // layer's replica, when they have one. | 97 // layer's replica, when they have one. |
98 const char kShowReplicaScreenSpaceRects[] = "show-replica-screenspace-rects"; | 98 const char kShowReplicaScreenSpaceRects[] = "show-replica-screenspace-rects"; |
99 const char kUIShowReplicaScreenSpaceRects[] = | 99 const char kUIShowReplicaScreenSpaceRects[] = |
100 "ui-show-replica-screenspace-rects"; | 100 "ui-show-replica-screenspace-rects"; |
101 | 101 |
102 // Show rects in the HUD wherever something is known to be drawn opaque and is | |
103 // considered occluding the pixels behind it. | |
104 const char kShowOccludingRects[] = "show-occluding-rects"; | |
105 const char kUIShowOccludingRects[] = "ui-show-occluding-rects"; | |
106 | |
107 // Show rects in the HUD wherever something is not known to be drawn opaque and | |
108 // is not considered to be occluding the pixels behind it. | |
109 const char kShowNonOccludingRects[] = "show-nonoccluding-rects"; | |
110 const char kUIShowNonOccludingRects[] = "ui-show-nonoccluding-rects"; | |
111 | |
112 // Prevents the layer tree unit tests from timing out. | 102 // Prevents the layer tree unit tests from timing out. |
113 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; | 103 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; |
114 | 104 |
115 // Makes pixel tests write their output instead of read it. | 105 // Makes pixel tests write their output instead of read it. |
116 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; | 106 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; |
117 | 107 |
118 } // namespace switches | 108 } // namespace switches |
119 } // namespace cc | 109 } // namespace cc |
OLD | NEW |