blob: 2214c3dba4226654ea42aa8cd8559b41bb976693 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright (c) 2012 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/switches.h"
namespace cc {
namespace switches {
// On platforms where checkerboards are used, prefer background colors instead
// of checkerboards.
const char kBackgroundColorInsteadOfCheckerboard[] =
"background-color-instead-of-checkerboard";
const char kDisableThreadedAnimation[] = "disable-threaded-animation";
const char kEnablePartialSwap[] = "enable-partial-swap";
const char kEnablePerTilePainting[] = "enable-per-tile-painting";
// Enables an alternative pinch-zoom gesture support, via the threaded
// compositor.
const char kEnablePinchInCompositor[] = "enable-pinch-in-compositor";
// When threaded compositing is turned on, wait until the entire frame has
// content (i.e. jank) instead of showing checkerboards for missing content.
const char kJankInsteadOfCheckerboard[] = "jank-instead-of-checkerboard";
// Paint content on the compositor thread instead of the main thread.
const char kImplSidePainting[] = "impl-side-painting";
} // namespace switches
} // namespace cc
|