| 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/switches.h" | 5 #include "cc/switches.h" |
| 6 | 6 |
| 7 namespace cc { | 7 namespace cc { |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // On platforms where checkerboards are used, prefer background colors instead | 10 // On platforms where checkerboards are used, prefer background colors instead |
| 11 // of checkerboards. | 11 // of checkerboards. |
| 12 const char kBackgroundColorInsteadOfCheckerboard[] = | 12 const char kBackgroundColorInsteadOfCheckerboard[] = |
| 13 "background-color-instead-of-checkerboard"; | 13 "background-color-instead-of-checkerboard"; |
| 14 | 14 |
| 15 const char kDisableThreadedAnimation[] = "disable-threaded-animation"; | 15 const char kDisableThreadedAnimation[] = "disable-threaded-animation"; |
| 16 | 16 |
| 17 const char kEnablePartialSwap[] = "enable-partial-swap"; | 17 const char kEnablePartialSwap[] = "enable-partial-swap"; |
| 18 | 18 |
| 19 const char kEnablePerTilePainting[] = "enable-per-tile-painting"; | |
| 20 | |
| 21 // Enables an alternative pinch-zoom gesture support, via the threaded | 19 // Enables an alternative pinch-zoom gesture support, via the threaded |
| 22 // compositor. | 20 // compositor. |
| 23 const char kEnablePinchInCompositor[] = "enable-pinch-in-compositor"; | 21 const char kEnablePinchInCompositor[] = "enable-pinch-in-compositor"; |
| 24 | 22 |
| 25 // Paint content on the compositor thread instead of the main thread. | 23 // Paint content on the compositor thread instead of the main thread. |
| 26 const char kImplSidePainting[] = "impl-side-painting"; | 24 const char kImplSidePainting[] = "impl-side-painting"; |
| 27 | 25 |
| 28 // When threaded compositing is turned on, wait until the entire frame has | 26 // When threaded compositing is turned on, wait until the entire frame has |
| 29 // content (i.e. jank) instead of showing checkerboards for missing content. | 27 // content (i.e. jank) instead of showing checkerboards for missing content. |
| 30 const char kJankInsteadOfCheckerboard[] = "jank-instead-of-checkerboard"; | 28 const char kJankInsteadOfCheckerboard[] = "jank-instead-of-checkerboard"; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 47 // Show rects in the HUD wherever something is known to be drawn opaque and is | 45 // Show rects in the HUD wherever something is known to be drawn opaque and is |
| 48 // considered occluding the pixels behind it. | 46 // considered occluding the pixels behind it. |
| 49 const char kShowOccludingRects[] = "show-occluding-rects"; | 47 const char kShowOccludingRects[] = "show-occluding-rects"; |
| 50 | 48 |
| 51 // Show metrics about overdraw in about:tracing recordings, such as the number | 49 // Show metrics about overdraw in about:tracing recordings, such as the number |
| 52 // of pixels culled, and the number of pixels drawn, for each frame. | 50 // of pixels culled, and the number of pixels drawn, for each frame. |
| 53 const char kTraceOverdraw[] = "trace-overdraw"; | 51 const char kTraceOverdraw[] = "trace-overdraw"; |
| 54 | 52 |
| 55 } // namespace switches | 53 } // namespace switches |
| 56 } // namespace cc | 54 } // namespace cc |
| OLD | NEW |