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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
cc / layers / layer_impl.h [blame]
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_LAYERS_LAYER_IMPL_H_
#define CC_LAYERS_LAYER_IMPL_H_
#include <stddef.h>
#include <stdint.h>
#include <map>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include "base/check.h"
#include "base/containers/flat_set.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "cc/base/region.h"
#include "cc/base/synced_property.h"
#include "cc/cc_export.h"
#include "cc/debug/layer_tree_debug_state.h"
#include "cc/input/hit_test_opaqueness.h"
#include "cc/input/input_handler.h"
#include "cc/layers/draw_mode.h"
#include "cc/layers/draw_properties.h"
#include "cc/layers/layer_collections.h"
#include "cc/layers/render_surface_impl.h"
#include "cc/layers/scroll_hit_test_rect.h"
#include "cc/layers/touch_action_region.h"
#include "cc/mojom/layer_type.mojom.h"
#include "cc/paint/element_id.h"
#include "cc/tiles/tile_priority.h"
#include "cc/trees/damage_reason.h"
#include "cc/trees/target_property.h"
#include "components/viz/common/quads/shared_quad_state.h"
#include "components/viz/common/surfaces/region_capture_bounds.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/display_color_spaces.h"
#include "ui/gfx/geometry/point3_f.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/gfx/geometry/transform.h"
#include "ui/gfx/geometry/vector2d_f.h"
namespace viz {
class ClientResourceProvider;
class CompositorRenderPass;
}
namespace cc {
class AppendQuadsData;
struct LayerDebugInfo;
class LayerTreeImpl;
class MicroBenchmarkImpl;
class PrioritizedTile;
class SimpleEnclosedRegion;
class Tile;
enum ViewportLayerType {
NOT_VIEWPORT_LAYER,
INNER_VIEWPORT_CONTAINER,
OUTER_VIEWPORT_CONTAINER,
INNER_VIEWPORT_SCROLL,
OUTER_VIEWPORT_SCROLL,
LAST_VIEWPORT_LAYER_TYPE = OUTER_VIEWPORT_SCROLL,
};
class CC_EXPORT LayerImpl {
public:
static std::unique_ptr<LayerImpl> Create(LayerTreeImpl* tree_impl, int id) {
return base::WrapUnique(new LayerImpl(tree_impl, id));
}
LayerImpl(const LayerImpl&) = delete;
virtual ~LayerImpl();
virtual mojom::LayerType GetLayerType() const;
LayerImpl& operator=(const LayerImpl&) = delete;
int id() const { return layer_id_; }
// Whether this layer is on the active tree, return false if it's on the
// pending tree.
bool IsActive() const;
void SetHasTransformNode(bool val) { has_transform_node_ = val; }
bool has_transform_node() const { return has_transform_node_; }
void set_property_tree_sequence_number(int sequence_number) {}
void SetTransformTreeIndex(int index);
int transform_tree_index() const { return transform_tree_index_; }
void SetClipTreeIndex(int index);
int clip_tree_index() const { return clip_tree_index_; }
void SetEffectTreeIndex(int index);
int effect_tree_index() const { return effect_tree_index_; }
int render_target_effect_tree_index() const;
void SetScrollTreeIndex(int index);
int scroll_tree_index() const { return scroll_tree_index_; }
void SetOffsetToTransformParent(const gfx::Vector2dF& offset) {
offset_to_transform_parent_ = offset;
}
gfx::Vector2dF offset_to_transform_parent() const {
return offset_to_transform_parent_;
}
bool is_clipped() const { return draw_properties_.is_clipped; }
LayerTreeImpl* layer_tree_impl() const { return layer_tree_impl_; }
void PopulateSharedQuadState(viz::SharedQuadState* state,
bool contents_opaque) const;
// If using these two, you need to override GetEnclosingRectInTargetSpace() to
// use GetScaledEnclosingRectInTargetSpace(). To do otherwise may result in
// inconsistent values, and drawing/clipping problems.
void PopulateScaledSharedQuadState(viz::SharedQuadState* state,
float layer_to_content_scale,
bool contents_opaque) const;
void PopulateScaledSharedQuadStateWithContentRects(
viz::SharedQuadState* state,
float layer_to_content_scale,
const gfx::Rect& content_rect,
const gfx::Rect& content_visible_rect,
bool contents_opaque) const;
// WillDraw must be called before AppendQuads. If WillDraw returns false,
// AppendQuads and DidDraw will not be called. If WillDraw returns true,
// DidDraw is guaranteed to be called before another WillDraw or before
// the layer is destroyed.
virtual bool WillDraw(DrawMode draw_mode,
viz::ClientResourceProvider* resource_provider);
virtual void AppendQuads(viz::CompositorRenderPass* render_pass,
AppendQuadsData* append_quads_data) {}
virtual void DidDraw(viz::ClientResourceProvider* resource_provider);
// Verify that the resource ids in the quad are valid.
void ValidateQuadResources(viz::DrawQuad* quad) const {
#if DCHECK_IS_ON()
ValidateQuadResourcesInternal(quad);
#endif
}
virtual void GetContentsResourceId(viz::ResourceId* resource_id,
gfx::Size* resource_size,
gfx::SizeF* resource_uv_size) const;
virtual void NotifyTileStateChanged(const Tile* tile) {}
virtual bool IsScrollbarLayer() const;
bool IsScrollerOrScrollbar() const;
// Returns true if this layer has content to draw.
void SetDrawsContent(bool draws_content);
bool draws_content() const { return draws_content_; }
void SetHitTestOpaqueness(HitTestOpaqueness opaqueness);
bool HitTestable() const;
bool OpaqueToHitTest() const;
void SetBackgroundColor(SkColor4f background_color);
SkColor4f background_color() const { return background_color_; }
void SetSafeOpaqueBackgroundColor(SkColor4f background_color);
SkColor4f safe_opaque_background_color() const {
// Layer::SafeOpaqueBackgroundColor() should ensure this.
DCHECK_EQ(contents_opaque(), safe_opaque_background_color_.isOpaque());
return safe_opaque_background_color_;
}
// See Layer::SetContentsOpaque() and SetContentsOpaqueForText() for the
// relationship between the two flags.
void SetContentsOpaque(bool opaque);
bool contents_opaque() const { return contents_opaque_; }
void SetContentsOpaqueForText(bool opaque);
bool contents_opaque_for_text() const { return contents_opaque_for_text_; }
float Opacity() const;
// Stable identifier for clients. See comment in cc/trees/element_id.h.
void SetElementId(ElementId element_id);
ElementId element_id() const { return element_id_; }
bool IsAffectedByPageScale() const;
bool Is3dSorted() const { return GetSortingContextId() != 0; }
void SetShouldCheckBackfaceVisibility(bool should_check_backface_visibility) {
should_check_backface_visibility_ = should_check_backface_visibility;
}
bool should_check_backface_visibility() const {
return should_check_backface_visibility_;
}
bool ShowDebugBorders(DebugBorderType type) const;
// The render surface which this layer draws into. This can be either owned by
// the same layer or an ancestor of this layer.
RenderSurfaceImpl* render_target();
const RenderSurfaceImpl* render_target() const;
DrawProperties& draw_properties() { return draw_properties_; }
const DrawProperties& draw_properties() const { return draw_properties_; }
gfx::Transform DrawTransform() const;
gfx::Transform ScreenSpaceTransform() const;
// Setter for draw_properties_.
void set_visible_layer_rect(const gfx::Rect& visible_rect) {
draw_properties_.visible_layer_rect = visible_rect;
}
void set_clip_rect(const gfx::Rect& clip_rect) {
draw_properties_.clip_rect = clip_rect;
}
// The following are shortcut accessors to get various information from
// draw_properties_
float draw_opacity() const { return draw_properties_.opacity; }
bool screen_space_transform_is_animating() const {
return draw_properties_.screen_space_transform_is_animating;
}
gfx::Rect clip_rect() const { return draw_properties_.clip_rect; }
gfx::Rect visible_drawable_content_rect() const {
return draw_properties_.visible_drawable_content_rect;
}
gfx::Rect visible_layer_rect() const {
return draw_properties_.visible_layer_rect;
}
// The client should be responsible for setting bounds, content bounds and
// contents scale to appropriate values. LayerImpl doesn't calculate any of
// them from the other values.
void SetBounds(const gfx::Size& bounds);
gfx::Size bounds() const;
void set_is_inner_viewport_scroll_layer() {
is_inner_viewport_scroll_layer_ = true;
}
void SetCurrentScrollOffset(const gfx::PointF& scroll_offset);
// Returns the delta of the scroll that was outside of the bounds of the
// initial scroll
gfx::Vector2dF ScrollBy(const gfx::Vector2dF& scroll);
// Some properties on the LayerImpl are rarely set, and so are bundled
// under a single unique_ptr.
struct CC_EXPORT RareProperties {
RareProperties();
RareProperties(const RareProperties&);
~RareProperties();
// The bounds of elements marked for potential region capture, stored in
// the coordinate space of this layer.
viz::RegionCaptureBounds capture_bounds;
Region main_thread_scroll_hit_test_region;
std::vector<ScrollHitTestRect> non_composited_scroll_hit_test_rects;
Region wheel_event_handler_region;
PaintFlags::FilterQuality filter_quality = PaintFlags::FilterQuality::kLow;
PaintFlags::DynamicRangeLimitMixture dynamic_range_limit{
PaintFlags::DynamicRangeLimit::kHigh};
};
RareProperties& EnsureRareProperties() {
if (!rare_properties_)
rare_properties_ = std::make_unique<RareProperties>();
return *rare_properties_;
}
void ResetRareProperties() { rare_properties_.reset(); }
void SetMainThreadScrollHitTestRegion(const Region& region) {
if (rare_properties_ || !region.IsEmpty())
EnsureRareProperties().main_thread_scroll_hit_test_region = region;
}
const Region& main_thread_scroll_hit_test_region() const {
return rare_properties_
? rare_properties_->main_thread_scroll_hit_test_region
: Region::Empty();
}
void SetNonCompositedScrollHitTestRects(
const std::vector<ScrollHitTestRect>& rects) {
if (rare_properties_ || !rects.empty()) {
EnsureRareProperties().non_composited_scroll_hit_test_rects = rects;
}
}
const std::vector<ScrollHitTestRect>* non_composited_scroll_hit_test_rects()
const {
return rare_properties_
? &rare_properties_->non_composited_scroll_hit_test_rects
: nullptr;
}
void SetTouchActionRegion(TouchActionRegion);
const TouchActionRegion& touch_action_region() const {
return touch_action_region_;
}
const Region& GetAllTouchActionRegions() const;
bool has_touch_action_regions() const {
return !touch_action_region_.IsEmpty();
}
void SetCaptureBounds(viz::RegionCaptureBounds bounds);
const viz::RegionCaptureBounds* capture_bounds() const {
return rare_properties_ ? &rare_properties_->capture_bounds : nullptr;
}
// Set or get the region that contains wheel event handler.
// The |wheel_event_handler_region| specify the area where wheel event handler
// could block impl scrolling.
void SetWheelEventHandlerRegion(const Region& wheel_event_handler_region) {
if (rare_properties_ || !wheel_event_handler_region.IsEmpty()) {
EnsureRareProperties().wheel_event_handler_region =
wheel_event_handler_region;
}
}
const Region& wheel_event_handler_region() const {
return rare_properties_ ? rare_properties_->wheel_event_handler_region
: Region::Empty();
}
// The main thread may commit multiple times before the impl thread actually
// draws, so we need to accumulate (i.e. union) any update changes that have
// occurred on the main thread until we draw.
// Note this rect is in layer space (not content space).
void UnionUpdateRect(const gfx::Rect& update_rect);
const gfx::Rect& update_rect() const { return update_rect_; }
// Denotes an area that is damaged and needs redraw. This is in the layer's
// space. By default returns empty rect, but can be overridden by subclasses
// as appropriate.
virtual gfx::Rect GetDamageRect() const;
// Damage tracker will consider layer damaged if `LayerPropertyChanged` is
// true, or update_rect() or GetDamageRect() are non-empty. This method
// returns damage reasons for any and all of these cases. The default
// implementation adds kUntracked for all of these cases.
virtual DamageReasonSet GetDamageReasons() const;
// This includes |layer_property_changed_not_from_property_trees_| and
// property_trees changes.
bool LayerPropertyChanged() const;
bool LayerPropertyChangedFromPropertyTrees() const;
// Only checks |layer_property_changed_not_from_property_trees_|. Used in
// damage_tracker to determine if there is a contributing content damage not
// from property_trees changes in animaiton.
bool LayerPropertyChangedNotFromPropertyTrees() const;
virtual void ResetChangeTracking();
virtual SimpleEnclosedRegion VisibleOpaqueRegion() const;
virtual void DidBecomeActive() {}
virtual void DidBeginTracing();
// Release resources held by this layer. Called when the output surface
// that rendered this layer was lost.
virtual void ReleaseResources();
// Releases resources in response to memory pressure. The default
// implementation just calls ReleaseResources() and subclasses will override
// if that's not appropriate.
virtual void OnPurgeMemory();
// Release tile resources held by this layer. Called when a rendering mode
// switch has occurred and tiles are no longer valid.
virtual void ReleaseTileResources();
// Recreate tile resources held by this layer after they were released by a
// ReleaseTileResources call.
virtual void RecreateTileResources();
virtual std::unique_ptr<LayerImpl> CreateLayerImpl(
LayerTreeImpl* tree_impl) const;
virtual void PushPropertiesTo(LayerImpl* layer);
// Internal to property tree construction (which only happens in tests on a
// LayerImpl tree. See Layer::IsSnappedToPixelGridInTarget() for explanation,
// as this mirrors that method.
virtual bool IsSnappedToPixelGridInTarget();
virtual void GetAllPrioritizedTilesForTracing(
std::vector<PrioritizedTile>* prioritized_tiles) const;
virtual void AsValueInto(base::trace_event::TracedValue* dict) const;
std::string ToString() const;
virtual size_t GPUMemoryUsageInBytes() const;
// Mark a pending tree layer that needs to push its properties to the active
// tree, or an active tree layer that needs to push its properties to the
// display tree (only applicable when using a LayerContext). These properties
// should not be changed during tree lifetime, and only changed by being
// pushed to the target tree. For pending tree layers there are three cases
// where this function needs to be called: when the main thread layer has
// properties that need to be pushed, when a new LayerImpl is created on the
// pending tree while syncing layers from main thread, or when we recompute
// visible layer properties on the pending tree.
void SetNeedsPushProperties();
virtual void RunMicroBenchmark(MicroBenchmarkImpl* benchmark);
void UpdateDebugInfo(LayerDebugInfo* debug_info);
void set_contributes_to_drawn_render_surface(bool is_member) {
contributes_to_drawn_render_surface_ = is_member;
}
bool contributes_to_drawn_render_surface() const {
return contributes_to_drawn_render_surface_;
}
void set_may_contain_video(bool yes) { may_contain_video_ = yes; }
bool may_contain_video() const { return may_contain_video_; }
// Layers that share a sorting context id will be sorted together in 3d
// space. 0 is a special value that means this layer will not be sorted and
// will be drawn in paint order.
int GetSortingContextId() const;
// Get the correct invalidation region instead of conservative Rect
// for layers that provide it.
virtual Region GetInvalidationRegionForDebugging();
// Returns the visible rect that is used by damage tracker. This damage rect
// is computed as an eclosing rect of actual content size x transform to
// target space, which can be different from visible_drawing_content_rect. For
// example, the actual tile size of picture layer in the target surface can be
// bigger when e.g. the layer's raster scale is different from the scale of
// the layer's draw transform.
// If you override this, and are making use of
// PopulateScaledSharedQuadState(), make sure you call
// GetScaledEnclosingVisibleRectInTargetSpace(). See comment for
// PopulateScaledSharedQuadState().
virtual gfx::Rect GetEnclosingVisibleRectInTargetSpace() const;
// Returns the visible bounds of this layer in target space when scaled by
// |scale|. This function scales in the same way as
// PopulateScaledSharedQuadStateQuadState(). See
// PopulateScaledSharedQuadStateQuadState() for more details.
gfx::Rect GetScaledEnclosingVisibleRectInTargetSpace(float scale) const;
// GetIdealContentsScale() returns the ideal 2D scale, clamped to not exceed
// GetPreferredRasterScale().
// GetIdealContentsScaleKey() returns the maximum component, a fallback to
// uniform scale for callers that don't support 2d scales yet.
// TODO(crbug.com/40176440): Remove GetIdealContentsScaleKey() in favor of
// GetIdealContentsScale().
gfx::Vector2dF GetIdealContentsScale() const;
float GetIdealContentsScaleKey() const;
void SetFilterQuality(PaintFlags::FilterQuality);
PaintFlags::FilterQuality GetFilterQuality() const {
return rare_properties_ ? rare_properties_->filter_quality
: PaintFlags::FilterQuality::kLow;
}
void SetDynamicRangeLimit(
PaintFlags::DynamicRangeLimitMixture dynamic_range_limit);
PaintFlags::DynamicRangeLimitMixture GetDynamicRangeLimit() const {
return rare_properties_ ? rare_properties_->dynamic_range_limit
: PaintFlags::DynamicRangeLimitMixture(
PaintFlags::DynamicRangeLimit::kHigh);
}
void NoteLayerPropertyChanged();
void NoteLayerPropertyChangedFromPropertyTrees();
ElementListType GetElementTypeForAnimation() const;
void set_raster_even_if_not_drawn(bool yes) {
raster_even_if_not_drawn_ = yes;
}
bool raster_even_if_not_drawn() const { return raster_even_if_not_drawn_; }
void EnsureValidPropertyTreeIndices() const;
// TODO(sunxd): Remove this function and replace it with visitor pattern.
virtual bool is_surface_layer() const;
std::string DebugName() const;
virtual gfx::ContentColorUsage GetContentColorUsage() const;
virtual void NotifyKnownResourceIdsBeforeAppendQuads(
const base::flat_set<viz::ViewTransitionElementResourceId>&
known_resource_ids) {}
virtual viz::ViewTransitionElementResourceId ViewTransitionResourceId() const;
virtual void SetInInvisibleLayerTree() {}
protected:
// When |will_always_push_properties| is true, the layer will not itself set
// its SetNeedsPushProperties() state, as it expects to be always pushed to
// the active tree regardless.
LayerImpl(LayerTreeImpl* layer_impl,
int id,
bool will_always_push_properties = false);
// Get the color and size of the layer's debug border.
virtual void GetDebugBorderProperties(SkColor4f* color, float* width) const;
void AppendDebugBorderQuad(viz::CompositorRenderPass* render_pass,
const gfx::Rect& quad_rect,
const viz::SharedQuadState* shared_quad_state,
AppendQuadsData* append_quads_data) const;
void AppendDebugBorderQuad(viz::CompositorRenderPass* render_pass,
const gfx::Rect& quad_rect,
const viz::SharedQuadState* shared_quad_state,
AppendQuadsData* append_quads_data,
SkColor4f color,
float width) const;
static float GetPreferredRasterScale(
gfx::Vector2dF raster_space_scale_factor);
private:
void ValidateQuadResourcesInternal(viz::DrawQuad* quad) const;
gfx::Transform GetScaledDrawTransform(float layer_to_content_scale) const;
const int layer_id_;
const raw_ptr<LayerTreeImpl> layer_tree_impl_;
const bool will_always_push_properties_ : 1;
// Properties synchronized from the associated Layer.
gfx::Size bounds_;
gfx::Vector2dF offset_to_transform_parent_;
// Tracks if drawing-related properties have changed since last redraw.
// TODO(wutao): We want to distinquish the sources of change so that we can
// reuse the cache of render pass. For example, we can reuse the cache when
// transform and opacity changing on a surface during animation. Currently
// |layer_property_changed_from_property_trees_| does not mean the layer is
// damaged from animation. We need better mechanism to explicitly capture
// damage from animations. http://crbug.com/755828.
bool layer_property_changed_not_from_property_trees_ : 1 = false;
bool layer_property_changed_from_property_trees_ : 1 = false;
bool may_contain_video_ : 1 = false;
bool contents_opaque_ : 1 = false;
bool contents_opaque_for_text_ : 1 = false;
bool should_check_backface_visibility_ : 1 = false;
bool draws_content_ : 1 = false;
bool contributes_to_drawn_render_surface_ : 1 = false;
bool is_inner_viewport_scroll_layer_ : 1 = false;
HitTestOpaqueness hit_test_opaqueness_ = HitTestOpaqueness::kTransparent;
TouchActionRegion touch_action_region_;
SkColor4f background_color_ = SkColors::kTransparent;
SkColor4f safe_opaque_background_color_ = SkColors::kTransparent;
int transform_tree_index_;
int effect_tree_index_;
int clip_tree_index_;
int scroll_tree_index_;
std::unique_ptr<RareProperties> rare_properties_;
protected:
friend class TreeSynchronizer;
DrawMode current_draw_mode_;
EffectTree& GetEffectTree() const;
PropertyTrees* GetPropertyTrees() const;
ClipTree& GetClipTree() const;
ScrollTree& GetScrollTree() const;
TransformTree& GetTransformTree() const;
private:
ElementId element_id_;
// Rect indicating what was repainted/updated during update.
// Note that plugin layers bypass this and leave it empty.
// This is in the layer's space.
gfx::Rect update_rect_;
// Group of properties that need to be computed based on the layer tree
// hierarchy before layers can be drawn.
DrawProperties draw_properties_;
std::unique_ptr<LayerDebugInfo> debug_info_;
// Cache of all regions represented by any touch action from
// |touch_action_region_|.
mutable std::unique_ptr<Region> all_touch_action_regions_;
bool needs_push_properties_ : 1 = false;
// This is set for layers that have a property because of which they are not
// drawn (singular transforms), but they can become visible soon (the property
// is being animated). For this reason, while these layers are not drawn, they
// are still rasterized.
bool raster_even_if_not_drawn_ : 1 = false;
bool has_transform_node_ : 1 = false;
};
} // namespace cc
#endif // CC_LAYERS_LAYER_IMPL_H_