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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
cc / base / features.cc [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/base/features.h"
#include <string>
#include "base/feature_list.h"
#include "build/build_config.h"
namespace features {
// When enabled, this forces composited textures for SurfaceLayerImpls to be
// aligned to the pixel grid. Lack of alignment can lead to blur, noticeably so
// in text. https://crbug.com/359279545
BASE_FEATURE(kAlignSurfaceLayerImplToPixelGrid,
"AlignSurfaceLayerImplToPixelGrid",
base::FEATURE_ENABLED_BY_DEFAULT);
// Whether the compositor should attempt to sync with the scroll handlers before
// submitting a frame.
BASE_FEATURE(kSynchronizedScrolling,
"SynchronizedScrolling",
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS)
base::FEATURE_DISABLED_BY_DEFAULT);
#else
base::FEATURE_ENABLED_BY_DEFAULT);
#endif
BASE_FEATURE(kMainRepaintScrollPrefersNewContent,
"MainRepaintScrollPrefersNewContent",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kDeferImplInvalidation,
"DeferImplInvalidation",
base::FEATURE_DISABLED_BY_DEFAULT);
const base::FeatureParam<int> kDeferImplInvalidationFrames{
&kDeferImplInvalidation, "frames", 1};
// Note that kUseDMSAAForTiles only controls vulkan launch on android. We will
// be using a separate flag to control the launch on GL.
BASE_FEATURE(kUseDMSAAForTiles,
"UseDMSAAForTiles",
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_ANDROID)
base::FEATURE_ENABLED_BY_DEFAULT
#else
base::FEATURE_DISABLED_BY_DEFAULT
#endif
);
BASE_FEATURE(kUIEnableSharedImageCacheForGpu,
"UIEnableSharedImageCacheForGpu",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kReclaimResourcesDelayedFlushInBackground,
"ReclaimResourcesDelayedFlushInBackground",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kDetectHiDpiForMsaa,
"DetectHiDpiForMsaa",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kReclaimPrepaintTilesWhenIdle,
"ReclaimPrepaintTilesWhenIdle",
base::FEATURE_DISABLED_BY_DEFAULT);
// This saves memory on all platforms, but while on Android savings are
// significant (~10MiB or more of foreground memory), on desktop they were
// small, so only enable on Android.
//
// Disabled 04/2024 as it regresses checkerboarding metrics. Feature kept around
// to find a better balance between checkerboarding and memory.
BASE_FEATURE(kSmallerInterestArea,
"SmallerInterestArea",
base::FEATURE_DISABLED_BY_DEFAULT
);
const base::FeatureParam<int> kInterestAreaSizeInPixels{
&kSmallerInterestArea, "size_in_pixels", kDefaultInterestAreaSizeInPixels};
BASE_FEATURE(kReclaimOldPrepaintTiles,
"ReclaimOldPrepaintTiles",
base::FEATURE_DISABLED_BY_DEFAULT);
const base::FeatureParam<int> kReclaimDelayInSeconds{&kSmallerInterestArea,
"reclaim_delay_s", 30};
BASE_FEATURE(kUseMapRectForPixelMovement,
"UseMapRectForPixelMovement",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kEvictionThrottlesDraw,
"EvictionThrottlesDraw",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kAdjustFastMainThreadThreshold,
"AdjustFastMainThreadThreshold",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kClearCanvasResourcesInBackground,
"ClearCanvasResourcesInBackground",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kMetricsTracingCalculationReduction,
"MetricsTracingCalculationReduction",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kMetricsBackfillAdjustmentHoldback,
"MetricsBackfillAdjustmentHoldback",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kWaitForLateScrollEvents,
"WaitForLateScrollEvents",
base::FEATURE_ENABLED_BY_DEFAULT);
const base::FeatureParam<double> kWaitForLateScrollEventsDeadlineRatio{
&kWaitForLateScrollEvents, "deadline_ratio", 0.333};
BASE_FEATURE(kNonBatchedCopySharedImage,
"NonBatchedCopySharedImage",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kDontAlwaysPushPictureLayerImpls,
"DontAlwaysPushPictureLayerImpls",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kPreserveDiscardableImageMapQuality,
"PreserveDiscardableImageMapQuality",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kWarmUpCompositor,
"WarmUpCompositor",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kCCSlimming, "CCSlimming", base::FEATURE_ENABLED_BY_DEFAULT);
bool IsCCSlimmingEnabled() {
static const bool enabled = base::FeatureList::IsEnabled(kCCSlimming);
return enabled;
}
constexpr const char kScrollEventDispatchModeDispatchScrollEventsImmediately[] =
"DispatchScrollEventsImmediately";
constexpr const char kScrollEventDispatchModeUseScrollPredictorForEmptyQueue[] =
"UseScrollPredictorForEmptyQueue";
constexpr const char kScrollEventDispatchModeUseScrollPredictorForDeadline[] =
"UseScrollPredictorForDeadline";
constexpr const char
kScrollEventDispatchModeDispatchScrollEventsUntilDeadline[] =
"DispatchScrollEventsUntilDeadline";
const base::FeatureParam<std::string> kScrollEventDispatchMode(
&kWaitForLateScrollEvents,
"mode",
kScrollEventDispatchModeDispatchScrollEventsImmediately);
BASE_FEATURE(kTreesInViz, "TreesInViz", base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kSendExplicitDecodeRequestsImmediately,
"SendExplicitDecodeRequestsImmediately",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kThrottleFrameRateOnManyDidNotProduceFrame,
"ThrottleFrameRateOnManyDidNotProduceFrame",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kNewContentForCheckerboardedScrolls,
"NewContentForCheckerboardedScrolls",
base::FEATURE_DISABLED_BY_DEFAULT);
// By default, frame rate starts being throttled when 4 consecutive "did not
// produce frame" are observed. It stops being throttled when there's a drawn
// frame.
const base::FeatureParam<int> kNumDidNotProduceFrameBeforeThrottle{
&kThrottleFrameRateOnManyDidNotProduceFrame,
"num_did_not_produce_frame_before_throttle", 4};
BASE_FEATURE(kMultipleImplOnlyScrollAnimations,
"MultipleImplOnlyScrollAnimations",
base::FEATURE_ENABLED_BY_DEFAULT);
bool MultiImplOnlyScrollAnimationsSupported() {
return base::FeatureList::IsEnabled(
features::kMultipleImplOnlyScrollAnimations);
}
BASE_FEATURE(kPreventDuplicateImageDecodes,
"PreventDuplicateImageDecodes",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kInitImageDecodeLastUseTime,
"InitImageDecodeLastUseTime",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kDynamicSafeAreaInsetsSupportedByCC,
"DynamicSafeAreaInsetsSupportedByCC",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kThrottleMainFrameTo60Hz,
"ThrottleMainFrameTo60Hz",
base::FEATURE_DISABLED_BY_DEFAULT);
} // namespace features