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 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
|
// Copyright 2012 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_TREES_LAYER_TREE_IMPL_H_
#define CC_TREES_LAYER_TREE_IMPL_H_
#include <array>
#include <map>
#include <memory>
#include <set>
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>
#include "base/containers/flat_set.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/raw_ptr_exclusion.h"
#include "base/time/time.h"
#include "cc/base/synced_property.h"
#include "cc/input/event_listener_properties.h"
#include "cc/input/layer_selection_bound.h"
#include "cc/input/overscroll_behavior.h"
#include "cc/layers/layer_impl.h"
#include "cc/layers/layer_list_iterator.h"
#include "cc/metrics/event_metrics.h"
#include "cc/resources/ui_resource_client.h"
#include "cc/trees/browser_controls_params.h"
#include "cc/trees/layer_tree_host.h"
#include "cc/trees/layer_tree_host_impl.h"
#include "cc/trees/property_tree.h"
#include "cc/trees/swap_promise.h"
#include "components/viz/common/frame_sinks/begin_frame_args.h"
#include "third_party/blink/public/common/tokens/tokens.h"
#include "ui/gfx/overlay_transform.h"
namespace base {
namespace trace_event {
class TracedValue;
}
}
namespace viz {
class ClientResourceProvider;
class RasterContextProvider;
}
namespace cc {
enum class ActivelyScrollingType;
class DebugRectHistory;
class ViewTransitionRequest;
class GlobalStateThatImpactsTilePriority;
class HeadsUpDisplayLayerImpl;
class ImageDecodeCache;
class LayerTreeDebugState;
class LayerTreeImpl;
class LayerTreeFrameSink;
class LayerTreeSettings;
class MemoryHistory;
class PictureLayerImpl;
class TaskRunnerProvider;
class TileManager;
class UIResourceRequest;
class VideoFrameControllerClient;
struct PendingPageScaleAnimation;
using UIResourceRequestQueue = std::vector<UIResourceRequest>;
using SyncedScale = SyncedProperty<ScaleGroup>;
using SyncedBrowserControls = SyncedProperty<AdditionGroup<float>>;
using SyncedElasticOverscroll = SyncedProperty<AdditionGroup<gfx::Vector2dF>>;
class LayerTreeLifecycle {
public:
enum LifecycleState {
kNotSyncing,
// The following states are the steps performed when syncing properties to
// this tree (see: LayerTreeHost::FinishCommitOnImplThread or
// LayerTreeHostImpl::ActivateSyncTree).
kBeginningSync,
kSyncedPropertyTrees,
kSyncedLayerProperties,
kLastSyncState = kSyncedLayerProperties,
// TODO(pdr): Add states to cover more than just the synchronization steps.
};
void AdvanceTo(LifecycleState);
bool AllowsPropertyTreeAccess() const {
return state_ == kNotSyncing || state_ >= kSyncedPropertyTrees;
}
bool AllowsLayerPropertyAccess() const {
return state_ == kNotSyncing || state_ >= kSyncedLayerProperties;
}
private:
LifecycleState state_ = kNotSyncing;
};
class CC_EXPORT LayerTreeImpl {
public:
LayerTreeImpl(
LayerTreeHostImpl& host_impl,
viz::BeginFrameArgs begin_frame_args,
scoped_refptr<SyncedScale> page_scale_factor,
scoped_refptr<SyncedBrowserControls> top_controls_shown_ratio,
scoped_refptr<SyncedBrowserControls> bottom_controls_shown_ratio,
scoped_refptr<SyncedElasticOverscroll> elastic_overscroll);
LayerTreeImpl(const LayerTreeImpl&) = delete;
virtual ~LayerTreeImpl();
LayerTreeImpl& operator=(const LayerTreeImpl&) = delete;
void Shutdown();
void ReleaseResources();
void OnPurgeMemory();
void ReleaseTileResources();
void RecreateTileResources();
void SetVisible(bool visible);
// Methods called by the layer tree that pass-through or access LTHI.
// ---------------------------------------------------------------------------
LayerTreeFrameSink* layer_tree_frame_sink();
int max_texture_size() const;
const LayerTreeSettings& settings() const;
const LayerTreeDebugState& debug_state() const;
viz::RasterContextProvider* context_provider() const;
viz::ClientResourceProvider* resource_provider() const;
TileManager* tile_manager() const;
ImageDecodeCache* image_decode_cache() const;
ImageAnimationController* image_animation_controller() const;
FrameSorter* frame_sorter() const;
MemoryHistory* memory_history() const;
DebugRectHistory* debug_rect_history() const;
const GlobalStateThatImpactsTilePriority& global_tile_state() const {
return host_impl_->global_tile_state();
}
bool IsActiveTree() const;
bool IsPendingTree() const;
bool IsRecycleTree() const;
bool IsSyncTree() const;
bool HasPendingTree() const;
LayerImpl* FindActiveTreeLayerById(int id);
LayerImpl* FindPendingTreeLayerById(int id);
// TODO(bokan): PinchGestureActive is a layering violation, it's not related
// to what LayerTreeImpl does.
bool PinchGestureActive() const;
// Current BFA represents the frame that will be rendered next.
// Created BFA represents the begin frame args of the frame which
// was rendered when the LTHI was created. These are used to
// determine whether or not the renderer re-used a tree.
viz::BeginFrameArgs last_frame_begin_frame_args;
const viz::BeginFrameArgs& CurrentBeginFrameArgs() const;
const viz::BeginFrameArgs& CreatedBeginFrameArgs() const;
void SetCreatedBeginFrameArgs(viz::BeginFrameArgs other);
base::TimeDelta CurrentBeginFrameInterval() const;
const gfx::Rect ViewportRectForTilePriority() const;
std::unique_ptr<ScrollbarAnimationController>
CreateScrollbarAnimationController(ElementId scroll_element_id,
float initial_opacity);
void DidAnimateScrollOffset();
bool use_gpu_rasterization() const;
bool RequiresHighResToDraw() const;
bool SmoothnessTakesPriority() const;
VideoFrameControllerClient* GetVideoFrameControllerClient() const;
MutatorHost* mutator_host() const { return host_impl_->mutator_host(); }
void UpdateImageDecodingHints(
base::flat_map<PaintImage::Id, PaintImage::DecodingMode>
decoding_mode_map);
int GetMSAASampleCountForRaster(const DisplayItemList& display_list) const;
TargetColorParams GetTargetColorParams(
gfx::ContentColorUsage content_color_usage) const;
bool IsReadyToActivate() const;
void RequestImplSideInvalidationForRerasterTiling();
// Tree specific methods exposed to layer-impl tree.
// ---------------------------------------------------------------------------
void SetNeedsRedraw();
// Tracing methods
// ---------------------------------------------------------------------------
void GetAllPrioritizedTilesForTracing(
std::vector<PrioritizedTile>* prioritized_tiles) const;
void AsValueInto(base::trace_event::TracedValue* dict) const;
// Other public methods
// ---------------------------------------------------------------------------
LayerImpl* root_layer() {
return layer_list_.empty() ? nullptr : layer_list_[0].get();
}
const RenderSurfaceImpl* RootRenderSurface() const;
bool LayerListIsEmpty() const;
void SetRootLayerForTesting(std::unique_ptr<LayerImpl>);
void OnCanDrawStateChangedForTree();
bool IsRootLayer(const LayerImpl* layer) const;
OwnedLayerImplList DetachLayers();
OwnedLayerImplList DetachLayersKeepingRootLayerForTesting();
void SetPropertyTrees(const PropertyTrees& property_trees,
PropertyTreesChangeState& change_state,
bool preserve_change_tracking);
void SetPropertyTrees(PropertyTrees& property_trees,
bool preserve_change_tracking = false);
PropertyTrees* property_trees() {
// TODO(pdr): We should enable this DCHECK because it will catch uses of
// stale property trees, but it currently fails too many existing tests.
// DCHECK(lifecycle().AllowsPropertyTreeAccess());
return &property_trees_;
}
const PropertyTrees* property_trees() const { return &property_trees_; }
void PullPropertiesFrom(CommitState& commit_state,
const ThreadUnsafeCommitState& unsafe_state);
void PullPropertyTreesFrom(CommitState& commit_state,
const ThreadUnsafeCommitState& unsafe_state);
void PullLayerTreePropertiesFrom(CommitState& commit_state);
void PushPropertyTreesTo(LayerTreeImpl* tree_impl);
void PushPropertiesTo(LayerTreeImpl* tree_impl);
void PushSurfaceRangesTo(LayerTreeImpl* tree_impl);
void MoveChangeTrackingToLayers();
void ForceRecalculateRasterScales();
// Adapts an iterator of std::unique_ptr<LayerImpl> to an iterator of
// LayerImpl*.
template <typename Iterator>
class IteratorAdapter {
public:
using iterator_category = std::forward_iterator_tag;
using value_type = LayerImpl*;
using difference_type = std::ptrdiff_t;
using pointer = LayerImpl**;
using reference = LayerImpl*&;
constexpr IteratorAdapter() = default;
explicit IteratorAdapter(Iterator it) : it_(it) {}
bool operator==(IteratorAdapter o) const { return it_ == o.it_; }
bool operator!=(IteratorAdapter o) const { return !(*this == o); }
LayerImpl* operator*() const { return it_->get(); }
LayerImpl* operator->() const { return it_->get(); }
IteratorAdapter& operator++() {
++it_;
return *this;
}
IteratorAdapter operator++(int) {
IteratorAdapter other(*this);
++*this;
return other;
}
private:
Iterator it_;
};
using const_iterator = IteratorAdapter<OwnedLayerImplList::const_iterator>;
using const_reverse_iterator =
IteratorAdapter<OwnedLayerImplList::const_reverse_iterator>;
const_iterator begin() const { return const_iterator(layer_list_.cbegin()); }
const_iterator end() const { return const_iterator(layer_list_.cend()); }
const_reverse_iterator rbegin() const {
return const_reverse_iterator(layer_list_.crbegin());
}
const_reverse_iterator rend() const {
return const_reverse_iterator(layer_list_.crend());
}
// Tests precondition for mutating a property based on element id.
// These enumerated values are used in metrics, and must not be renumbered.
// New values must be added to the end of the list increasing kMaxValue, and
// obsolete values must be preserved.
enum class PropertyMutation {
kTransform = 0,
kOpacity = 1,
kFilter = 2,
kBackdropFilter = 3,
kMaxValue = kBackdropFilter
};
void ValidateEffectTreeeMapping(ElementId, PropertyMutation);
void SetTransformMutated(ElementId element_id,
const gfx::Transform& transform);
void SetOpacityMutated(ElementId element_id, float opacity);
void SetFilterMutated(ElementId element_id, const FilterOperations& filters);
void SetBackdropFilterMutated(ElementId element_id,
const FilterOperations& backdrop_filters);
int source_frame_number() const { return source_frame_number_; }
void set_source_frame_number(int frame_number) {
source_frame_number_ = frame_number;
}
BeginMainFrameTraceId trace_id() const { return trace_id_; }
void set_trace_id(BeginMainFrameTraceId val) { trace_id_ = val; }
const HeadsUpDisplayLayerImpl* hud_layer() const { return hud_layer_; }
HeadsUpDisplayLayerImpl* hud_layer() { return hud_layer_; }
void set_hud_layer(HeadsUpDisplayLayerImpl* layer_impl) {
hud_layer_ = layer_impl;
}
gfx::PointF TotalScrollOffset() const;
gfx::PointF TotalMaxScrollOffset() const;
void AddPresentationCallbacks(
std::vector<PresentationTimeCallbackBuffer::Callback> callbacks);
std::vector<PresentationTimeCallbackBuffer::Callback>
TakePresentationCallbacks();
void AddSuccessfulPresentationCallbacks(
std::vector<PresentationTimeCallbackBuffer::SuccessfulCallbackWithDetails>
callbacks);
std::vector<PresentationTimeCallbackBuffer::SuccessfulCallbackWithDetails>
TakeSuccessfulPresentationCallbacks();
// The following viewport related property nodes will only ever be set on the
// main-frame's renderer (i.e. OOPIF and UI compositors will not have these
// set.
void SetViewportPropertyIds(const ViewportPropertyIds& ids);
const TransformNode* OverscrollElasticityTransformNode() const;
TransformNode* OverscrollElasticityTransformNode() {
return const_cast<TransformNode*>(
const_cast<const LayerTreeImpl*>(this)
->OverscrollElasticityTransformNode());
}
const TransformNode* PageScaleTransformNode() const;
TransformNode* PageScaleTransformNode() {
return const_cast<TransformNode*>(
const_cast<const LayerTreeImpl*>(this)->PageScaleTransformNode());
}
const ScrollNode* InnerViewportScrollNode() const;
ScrollNode* InnerViewportScrollNode() {
return const_cast<ScrollNode*>(
const_cast<const LayerTreeImpl*>(this)->InnerViewportScrollNode());
}
const ClipNode* OuterViewportClipNode() const;
ClipNode* OuterViewportClipNode() {
return const_cast<ClipNode*>(
const_cast<const LayerTreeImpl*>(this)->OuterViewportClipNode());
}
const ScrollNode* OuterViewportScrollNode() const;
ScrollNode* OuterViewportScrollNode() {
return const_cast<ScrollNode*>(
const_cast<const LayerTreeImpl*>(this)->OuterViewportScrollNode());
}
ViewportPropertyIds ViewportPropertyIdsForTesting() const {
return viewport_property_ids_;
}
LayerImpl* InnerViewportScrollLayerForTesting() const;
LayerImpl* OuterViewportScrollLayerForTesting() const;
ScrollNode* CurrentlyScrollingNode();
const ScrollNode* CurrentlyScrollingNode() const;
void SetCurrentlyScrollingNode(const ScrollNode* node);
void ClearCurrentlyScrollingNode();
void ApplySentScrollAndScaleDeltasFromAbortedCommit(
bool next_bmf,
bool main_frame_applied_deltas);
SkColor4f background_color() const { return background_color_; }
void set_background_color(SkColor4f color) { background_color_ = color; }
gfx::OverlayTransform display_transform_hint() const {
return display_transform_hint_;
}
void set_display_transform_hint(gfx::OverlayTransform hint) {
display_transform_hint_ = hint;
}
void UpdatePropertyTreeAnimationFromMainThread();
void SetPageScaleOnActiveTree(float active_page_scale);
void PushPageScaleFromMainThread(float page_scale_factor,
float min_page_scale_factor,
float max_page_scale_factor);
float current_page_scale_factor() const {
return page_scale_factor()->Current(IsActiveTree());
}
float min_page_scale_factor() const { return min_page_scale_factor_; }
float max_page_scale_factor() const { return max_page_scale_factor_; }
float page_scale_delta() const { return page_scale_factor()->Delta(); }
SyncedScale* page_scale_factor();
const SyncedScale* page_scale_factor() const;
void SetDeviceScaleFactor(float device_scale_factor);
float device_scale_factor() const { return device_scale_factor_; }
void set_painted_device_scale_factor(float painted_device_scale_factor) {
painted_device_scale_factor_ = painted_device_scale_factor;
}
float painted_device_scale_factor() const {
return painted_device_scale_factor_;
}
void SetLocalSurfaceIdFromParent(
const viz::LocalSurfaceId& local_surface_id_from_parent);
const viz::LocalSurfaceId& local_surface_id_from_parent() const {
return local_surface_id_from_parent_;
}
void RequestNewLocalSurfaceId();
bool TakeNewLocalSurfaceIdRequest();
bool new_local_surface_id_request_for_testing() const {
return new_local_surface_id_request_;
}
bool TakeNewLocalSurfaceIdRequestForVizProcess();
void SetScreenshotDestinationToken(base::UnguessableToken destination_token);
base::UnguessableToken TakeScreenshotDestinationToken();
void set_primary_main_frame_item_sequence_number(
int64_t item_sequence_number) {
primary_main_frame_item_sequence_number_ = item_sequence_number;
}
int64_t primary_main_frame_item_sequence_number() const {
return primary_main_frame_item_sequence_number_;
}
void SetDeviceViewportRect(const gfx::Rect& device_viewport_rect);
// TODO(fsamuel): The reason this is not a trivial accessor is because it
// may return an external viewport specified in LayerTreeHostImpl. In the
// future, all properties should flow through the pending and active layer
// trees and we shouldn't need to reach out to LayerTreeHostImpl.
gfx::Rect GetDeviceViewport() const;
// This accessor is the same as above, except it only ever returns the
// internal (i.e. not external) device viewport.
gfx::Rect internal_device_viewport() { return device_viewport_rect_; }
void SetDisplayColorSpaces(
const gfx::DisplayColorSpaces& display_color_spaces);
// OOPIFs need to know the page scale factor used in the main frame, but it
// is distributed differently (via VisualPropertiesSync), and used only to
// set raster-scale (page_scale_factor has geometry implications that are
// inappropriate for OOPIFs).
void SetExternalPageScaleFactor(float external_page_scale_factor);
float external_page_scale_factor() const {
return external_page_scale_factor_;
}
// A function to provide page scale information for scaling scroll deltas. In
// top-level frames we store this value in page_scale_factor_, but for
// cross-process subframes it's stored in external_page_scale_factor_, so
// that it only affects raster scale. These cases are mutually exclusive,
// except for a page hosted in a GuestView, so only one of the values should
// ever vary from 1.f.
float page_scale_factor_for_scroll() const {
DCHECK(external_page_scale_factor_ == 1.f ||
current_page_scale_factor() == 1.f ||
settings().is_for_scalable_page);
return external_page_scale_factor_ * current_page_scale_factor();
}
const gfx::DisplayColorSpaces& display_color_spaces() const {
return display_color_spaces_;
}
const ViewportPropertyIds& viewport_property_ids() const {
return viewport_property_ids_;
}
SyncedElasticOverscroll* elastic_overscroll() {
return elastic_overscroll_.get();
}
const SyncedElasticOverscroll* elastic_overscroll() const {
return elastic_overscroll_.get();
}
SyncedBrowserControls* top_controls_shown_ratio() {
return top_controls_shown_ratio_.get();
}
const SyncedBrowserControls* top_controls_shown_ratio() const {
return top_controls_shown_ratio_.get();
}
SyncedBrowserControls* bottom_controls_shown_ratio() {
return bottom_controls_shown_ratio_.get();
}
const SyncedBrowserControls* bottom_controls_shown_ratio() const {
return bottom_controls_shown_ratio_.get();
}
gfx::Vector2dF current_elastic_overscroll() const {
return elastic_overscroll()->Current(IsActiveTree());
}
void SetElementIdsForTesting();
// Updates draw properties and render surface layer list, as well as tile
// priorities. Returns false if it was unable to update. Updating lcd
// text may cause invalidations, so should only be done after a commit.
bool UpdateDrawProperties(
bool update_tiles,
bool update_image_animation_controller,
LayerImplList* output_update_layer_list_for_testing = nullptr);
// Update picture layers' tiles. Return true if any layer's tile priority
// is updated.
bool UpdateTiles();
void set_needs_update_draw_properties() {
needs_update_draw_properties_ = true;
}
void clear_needs_update_draw_properties_for_testing() {
needs_update_draw_properties_ = false;
}
bool needs_update_draw_properties() const {
return needs_update_draw_properties_;
}
bool is_in_resourceless_software_draw_mode() {
return (host_impl_->GetDrawMode() == DRAW_MODE_RESOURCELESS_SOFTWARE);
}
void set_needs_full_tree_sync(bool needs) { needs_full_tree_sync_ = needs; }
bool needs_full_tree_sync() const { return needs_full_tree_sync_; }
bool needs_surface_ranges_sync() const { return needs_surface_ranges_sync_; }
void set_needs_surface_ranges_sync(bool needs_surface_ranges_sync) {
needs_surface_ranges_sync_ = needs_surface_ranges_sync;
}
bool always_push_properties_on_picture_layers() const {
return always_push_properties_on_picture_layers_;
}
void ForceRedrawNextActivation() { next_activation_forces_redraw_ = true; }
void set_ui_resource_request_queue(UIResourceRequestQueue queue);
const RenderSurfaceList& GetRenderSurfaceList() const;
const Region& UnoccludedScreenSpaceRegion() const;
// These return the size of the root scrollable area and the size of
// the user-visible scrolling viewport, in CSS layout coordinates.
gfx::SizeF ScrollableSize() const;
gfx::SizeF ScrollableViewportSize() const;
gfx::Rect RootScrollLayerDeviceViewportBounds() const;
LayerImpl* LayerById(int id) const;
LayerImpl* LayerByElementId(ElementId element_id) const;
bool IsElementInPropertyTree(ElementId element_id) const;
void SetSurfaceRanges(base::flat_set<viz::SurfaceRange> surface_ranges);
const base::flat_set<viz::SurfaceRange>& SurfaceRanges() const;
void ClearSurfaceRanges();
void AddLayerShouldPushProperties(LayerImpl* layer);
void ClearLayersThatShouldPushProperties();
const base::flat_set<LayerImpl*>& LayersThatShouldPushProperties() const {
return layers_that_should_push_properties_;
}
// These should be called by LayerImpl's ctor/dtor.
void RegisterLayer(LayerImpl* layer);
void UnregisterLayer(LayerImpl* layer);
// Append a layer to the list.
void AddLayer(std::unique_ptr<LayerImpl> layer);
size_t NumLayers();
void DidBecomeActive();
// Used for accessing the task runner and debug assertions.
TaskRunnerProvider* task_runner_provider() const;
// Call this function when you expect there to be a swap buffer.
// See swap_promise.h for how to use SwapPromise.
//
// A swap promise queued by QueueSwapPromise travels with the layer
// information currently associated with the tree. For example, when
// a pending tree is activated, the swap promise is passed to the
// active tree along with the layer information. Similarly, when a
// new activation overwrites layer information on the active tree,
// queued swap promises are broken.
void QueueSwapPromise(std::unique_ptr<SwapPromise> swap_promise);
// Queue a swap promise, pinned to this tree. Pinned swap promises
// may only be queued on the active tree.
//
// An active tree pinned swap promise will see only DidSwap() or
// DidNotSwap(SWAP_FAILS). No DidActivate() will be seen because
// that has already happened prior to queueing of the swap promise.
//
// Pinned active tree swap promises will not be broken prematurely
// on the active tree if a new tree is activated.
void QueuePinnedSwapPromise(std::unique_ptr<SwapPromise> swap_promise);
// Takes ownership of |new_swap_promises|. Existing swap promises in
// |swap_promise_list_| are cancelled (SWAP_FAILS).
void PassSwapPromises(
std::vector<std::unique_ptr<SwapPromise>> new_swap_promises);
void AppendSwapPromises(
std::vector<std::unique_ptr<SwapPromise>> new_swap_promises);
void FinishSwapPromises(viz::CompositorFrameMetadata* metadata);
void ClearSwapPromises();
void BreakSwapPromises(SwapPromise::DidNotSwapReason reason);
void DidModifyTilePriorities(bool pending_update_tiles = false);
viz::ResourceId ResourceIdForUIResource(UIResourceId uid) const;
void ProcessUIResourceRequestQueue();
bool IsUIResourceOpaque(UIResourceId uid) const;
void RegisterPictureLayerImpl(PictureLayerImpl* layer);
void UnregisterPictureLayerImpl(PictureLayerImpl* layer);
const std::vector<raw_ptr<PictureLayerImpl, VectorExperimental>>&
picture_layers() const {
return picture_layers_;
}
void NotifyLayerHasPaintWorkletsChanged(PictureLayerImpl* layer,
bool has_worklets);
const base::flat_set<raw_ptr<PictureLayerImpl, CtnExperimental>>&
picture_layers_with_paint_worklets() const {
return picture_layers_with_paint_worklets_;
}
void RegisterScrollbar(ScrollbarLayerImplBase* scrollbar_layer);
void UnregisterScrollbar(ScrollbarLayerImplBase* scrollbar_layer);
ScrollbarSet ScrollbarsFor(ElementId scroll_element_id) const;
void RequestShowScrollbars(ElementId scroll_element_id);
LayerImpl* FindLayerThatIsHitByPoint(const gfx::PointF& screen_space_point);
LayerImpl* FindLayerThatIsHitByPointInTouchHandlerRegion(
const gfx::PointF& screen_space_point);
LayerImpl* FindLayerThatIsHitByPointInWheelEventHandlerRegion(
const gfx::PointF& screen_space_point);
// Returns all layers up to the first scroller or scrollbar layer (when
// enable_hit_test_opaqueness is false) or a layer opaque to hit test (when
// enable_hit_test_opaqueness is true), inclusive. The returned vector is
// sorted in order of top most come first. The back of the vector will be the
// scrollable layer or the first layer opaque to hit test, if one was hit.
std::vector<const LayerImpl*> FindLayersUpToFirstScrollableOrOpaqueToHitTest(
const gfx::PointF& screen_space_point);
bool PointHitsMainThreadScrollHitTestRegion(
const gfx::PointF& scree_space_point,
const LayerImpl& layer) const;
ElementId PointHitsNonCompositedScroll(const gfx::PointF& screen_space_point,
const LayerImpl& layer) const;
// Returns the ElementId representing a frame's document at the given point.
// In cases where cc doesn't have enough information to perform accurate
// attribution (e.g. in the presence of a complex clip), kInvalidElementId is
// returned.
ElementId FindFrameElementIdAtPoint(const gfx::PointF& screen_space_point);
void RegisterSelection(const LayerSelection& selection);
bool HandleVisibilityChanged() const { return handle_visibility_changed_; }
void ResetHandleVisibilityChanged();
// Compute the current selection handle location and visbility with respect to
// the viewport.
void GetViewportSelection(viz::Selection<gfx::SelectionBound>* selection);
bool browser_controls_shrink_blink_size() const {
return browser_controls_params_.browser_controls_shrink_blink_size;
}
bool SetCurrentBrowserControlsShownRatio(float top_ratio, float bottom_ratio);
float CurrentTopControlsShownRatio() const {
return top_controls_shown_ratio_->Current(IsActiveTree());
}
float CurrentBottomControlsShownRatio() const {
return bottom_controls_shown_ratio_->Current(IsActiveTree());
}
void SetBrowserControlsParams(const BrowserControlsParams& params);
float top_controls_height() const {
return browser_controls_params_.top_controls_height;
}
float top_controls_min_height() const {
return browser_controls_params_.top_controls_min_height;
}
void PushBrowserControlsFromMainThread(float top_controls_shown_ratio,
float bottom_controls_shown_ratio);
void SetMaxSafeAreaInsetBottom(float max_safe_area_inset_bottom);
float max_safe_area_inset_bottom() const {
return max_safe_area_inset_bottom_;
}
float bottom_controls_height() const {
return browser_controls_params_.bottom_controls_height;
}
float bottom_controls_min_height() const {
return browser_controls_params_.bottom_controls_min_height;
}
bool only_expand_top_controls_at_page_top() const {
return browser_controls_params_.only_expand_top_controls_at_page_top;
}
void set_overscroll_behavior(const OverscrollBehavior& behavior);
OverscrollBehavior overscroll_behavior() const {
return overscroll_behavior_;
}
void SetPendingPageScaleAnimation(
std::unique_ptr<PendingPageScaleAnimation> pending_animation);
std::unique_ptr<PendingPageScaleAnimation> TakePendingPageScaleAnimation();
void AppendEventsMetricsFromMainThread(EventMetrics::List events_metrics);
void AppendEventMetricsFromRasterThread(EventMetrics::List event_metrics);
EventMetrics::List TakeEventsMetrics();
EventMetrics::List TakeRasterEventsMetrics();
// Requests that we force send RenderFrameMetadata with the next frame.
void RequestForceSendMetadata() { force_send_metadata_request_ = true; }
bool TakeForceSendMetadataRequest();
void DidUpdateScrollOffset(ElementId id,
bool pushed_from_main_or_pending_tree);
// See LayerTreeHost.
bool have_scroll_event_handlers() const {
return have_scroll_event_handlers_;
}
void set_have_scroll_event_handlers(bool have_event_handlers) {
have_scroll_event_handlers_ = have_event_handlers;
}
bool did_raster_inducing_scroll() const {
return did_raster_inducing_scroll_;
}
// See LayerTreeHost.
EventListenerProperties event_listener_properties(
EventListenerClass event_class) const {
return event_listener_properties_[static_cast<size_t>(event_class)];
}
void set_event_listener_properties(EventListenerClass event_class,
EventListenerProperties event_properties) {
event_listener_properties_[static_cast<size_t>(event_class)] =
event_properties;
}
void ResetAllChangeTracking();
void HandleTickmarksVisibilityChange();
void HandleScrollbarShowRequests();
void InvalidateRegionForImages(
const PaintImageIdFlatSet& images_to_invalidate);
void InvalidateRasterInducingScrolls(
const base::flat_set<ElementId>& scrolls_to_invalidate);
void UpdateViewportContainerSizes();
LayerTreeLifecycle& lifecycle() { return lifecycle_; }
std::string LayerListAsJson() const;
AnimatedPaintWorkletTracker& paint_worklet_tracker() {
return host_impl_->paint_worklet_tracker();
}
const gfx::Transform& DrawTransform() const {
return host_impl_->DrawTransform();
}
bool IsInSynchronousComposite() const {
return host_impl_->IsInSynchronousComposite();
}
ActivelyScrollingType GetActivelyScrollingType() const {
return host_impl_->GetActivelyScrollingType();
}
// These functions are used for plumbing DelegatedInkMetadata from blink
// through the compositor and into viz via a compositor frame. They should
// only be called after the JS API |updateInkTrailStartPoint| has been
// called, which populates the metadata with provided information.
void set_delegated_ink_metadata(
std::unique_ptr<gfx::DelegatedInkMetadata> metadata) {
delegated_ink_metadata_ = std::move(metadata);
}
const gfx::DelegatedInkMetadata* delegated_ink_metadata() const {
return delegated_ink_metadata_.get();
}
void clear_delegated_ink_metadata() { delegated_ink_metadata_.reset(); }
size_t events_metrics_from_main_thread_count_for_testing() const {
return events_metrics_from_main_thread_.size();
}
size_t events_metrics_from_raster_thread_count_for_testing() const {
return event_metrics_from_raster_thread_.size();
}
bool device_viewport_rect_changed() const {
return device_viewport_rect_changed_;
}
bool viewport_mobile_optimized() const {
return host_impl_->viewport_mobile_optimized();
}
// Add a view transition request from the embedder.
void AddViewTransitionRequest(std::unique_ptr<ViewTransitionRequest> request);
// Returns all of the view transition requests stored so far, and empties
// the internal list.
std::vector<std::unique_ptr<ViewTransitionRequest>>
TakeViewTransitionRequests(bool should_set_needs_update_draw_properties);
// Returns true if there are pending ViewTransition requests that need a draw.
bool HasViewTransitionRequests() const;
// Returns true if there is a pending ViewTransition save request to cache
// output of the current frame.
bool HasViewTransitionSaveRequest() const;
// Returns a set of all view transition tokens that are currently in the
// capture phase.
base::flat_set<blink::ViewTransitionToken> GetCaptureViewTransitionTokens()
const;
const std::vector<std::unique_ptr<ViewTransitionRequest>>&
view_transition_requests() const {
return view_transition_requests_;
}
void UpdateAllScrollbarGeometriesForTesting() {
UpdateAllScrollbarGeometries();
}
void SetViewTransitionContentRect(const viz::ViewTransitionElementResourceId&,
const gfx::RectF&);
void AddLayerNeedingUpdateDiscardableImageMap(PictureLayerImpl* layer);
void SetPageScaleFactorAndLimitsForDisplayTree(float page_scale_factor,
float min_page_scale_factor,
float max_page_scale_factor);
LayerTreeHostImpl* host_impl() { return host_impl_; }
class CC_EXPORT DiscardableImageMapUpdater {
STACK_ALLOCATED();
public:
explicit DiscardableImageMapUpdater(LayerTreeImpl* layer_tree_impl);
~DiscardableImageMapUpdater();
void AddLayerNeedingUpdate(PictureLayerImpl* layer) {
layers_needing_update_.push_back(layer);
}
private:
LayerTreeImpl* const layer_tree_impl_;
std::vector<PictureLayerImpl*> layers_needing_update_;
};
protected:
float ClampPageScaleFactorToLimits(float page_scale_factor) const;
void PushPageScaleFactorAndLimits(const float* page_scale_factor,
float min_page_scale_factor,
float max_page_scale_factor);
bool SetPageScaleFactorLimits(float min_page_scale_factor,
float max_page_scale_factor);
void DidUpdatePageScale();
void PushBrowserControls(const float* top_controls_shown_ratio,
const float* bottom_controls_shown_ratio);
bool ClampTopControlsShownRatio();
bool ClampBottomControlsShownRatio();
private:
friend class LayerTreeHost;
void UpdatePageScaleNode();
ElementListType GetElementTypeForAnimation() const;
void UpdateTransformAnimation(ElementId element_id, int transform_node_index);
template <typename Functor>
LayerImpl* FindLayerThatIsHitByPointInEventHandlerRegion(
const gfx::PointF& screen_space_point,
const Functor& func);
// Update the geometries of all scrollbars (e.g., thumb size and position).
void UpdateAllScrollbarGeometries();
void UpdateViewportScrollbarGeometries();
void UpdateScrollbarGeometries(const ScrollNode& scroll_node);
raw_ptr<LayerTreeHostImpl> host_impl_;
viz::BeginFrameArgs created_begin_frame_args_;
int source_frame_number_ = 0;
BeginMainFrameTraceId trace_id_{0};
raw_ptr<HeadsUpDisplayLayerImpl, DanglingUntriaged> hud_layer_;
PropertyTrees property_trees_;
SkColor4f background_color_;
ViewportPropertyIds viewport_property_ids_;
LayerSelection selection_;
scoped_refptr<SyncedScale> page_scale_factor_;
float min_page_scale_factor_;
float max_page_scale_factor_;
float external_page_scale_factor_;
float device_scale_factor_;
float painted_device_scale_factor_;
gfx::DisplayColorSpaces display_color_spaces_;
viz::LocalSurfaceId local_surface_id_from_parent_;
bool new_local_surface_id_request_ : 1 = false;
// This will be set when new_local_surface_id_request_ is set,
// but will only be cleared in VizLayerContext::UpdateDisplayTreeFrom().
bool new_local_surface_id_request_for_viz_process_ : 1 = false;
bool needs_update_draw_properties_ : 1 = true;
bool needs_update_tiles_ : 1 = false;
// In impl-side painting mode, this is true when the pending tree may contain
// structural differences relative to the active tree. When using a
// LayerContext, this is also true on the active tree when it may contain
// structural differences relative to the display tree.
bool needs_full_tree_sync_ : 1 = true;
bool needs_surface_ranges_sync_ : 1 = false;
bool next_activation_forces_redraw_ : 1 = false;
bool handle_visibility_changed_ : 1 = false;
bool have_scroll_event_handlers_ : 1 = false;
bool did_raster_inducing_scroll_ : 1 = false;
// Contains the physical rect of the device viewport, to be used in
// determining what needs to be drawn.
bool device_viewport_rect_changed_ : 1 = false;
// Whether we have a request to force-send RenderFrameMetadata with the next
// frame.
bool force_send_metadata_request_ : 1 = false;
bool always_push_properties_on_picture_layers_ : 1 = false;
gfx::Rect device_viewport_rect_;
// Used for supporting dynamic safe area insets in the Clank Edge-to-Edge
// bottom bar feature(go/cc-dynamic-sai) This is originally passed down from
// browser for the display cutout. It has been scaled to the size of physical
// pixels.
float max_safe_area_inset_bottom_ = 0;
scoped_refptr<SyncedElasticOverscroll> elastic_overscroll_;
// TODO(wangxianzhu): Combine layers_ and layer_list_ when we remove
// support of mask layers.
OwnedLayerImplList layer_list_;
// Maps from layer id to layer.
LayerImplMap layer_id_map_;
// Set of layers that need to push properties.
// RAW_PTR_EXCLUSION: Performance reasons (based on analysis of MotionMark).
RAW_PTR_EXCLUSION base::flat_set<LayerImpl*>
layers_that_should_push_properties_;
struct ScrollbarLayerIds {
int horizontal = Layer::INVALID_ID;
int vertical = Layer::INVALID_ID;
};
// Each scroller can have up to two scrollbar layers (vertical and/or
// horizontal). This mapping is maintained as part of scrollbar registration.
base::flat_map<ElementId, ScrollbarLayerIds>
element_id_to_scrollbar_layer_ids_;
// Tracks a pending requests to show overlay scrollbars. It's set by the
// scrollbar layer and consumed by PushPropertiesTo() and
// HandleScrollbarShowRequests().
base::flat_set<ElementId> show_scrollbar_requests_;
std::vector<raw_ptr<PictureLayerImpl, VectorExperimental>> picture_layers_;
// After commit (or impl-side invalidation), the LayerTreeHostImpl must walk
// all PictureLayerImpls that have PaintWorklets to ensure they are painted.
// To avoid unnecessary walking, we track that set here.
base::flat_set<raw_ptr<PictureLayerImpl, CtnExperimental>>
picture_layers_with_paint_worklets_;
base::flat_set<viz::SurfaceRange> surface_layer_ranges_;
// List of render surfaces for the most recently prepared frame.
//
// RAW_PTR_EXCLUSION: visible in stack samples when Renderer BRP is enabled.
RAW_PTR_EXCLUSION RenderSurfaceList render_surface_list_;
// After drawing the |render_surface_list_| the areas in this region
// would not be fully covered by opaque content.
Region unoccluded_screen_space_region_;
std::vector<std::unique_ptr<SwapPromise>> swap_promise_list_;
std::vector<std::unique_ptr<SwapPromise>> pinned_swap_promise_list_;
UIResourceRequestQueue ui_resource_request_queue_;
std::array<EventListenerProperties, kEventListenerClassCount>
event_listener_properties_;
BrowserControlsParams browser_controls_params_;
OverscrollBehavior overscroll_behavior_;
// The amount that the browser controls are shown from 0 (hidden) to 1 (fully
// shown).
scoped_refptr<SyncedBrowserControls> top_controls_shown_ratio_;
scoped_refptr<SyncedBrowserControls> bottom_controls_shown_ratio_;
std::unique_ptr<PendingPageScaleAnimation> pending_page_scale_animation_;
// Tracks the lifecycle which is used for enforcing dependencies between
// lifecycle states. See: |LayerTreeLifecycle|.
LayerTreeLifecycle lifecycle_;
// Display transform hint to tag frames generated from this tree.
gfx::OverlayTransform display_transform_hint_ = gfx::OVERLAY_TRANSFORM_NONE;
std::vector<PresentationTimeCallbackBuffer::Callback> presentation_callbacks_;
std::vector<PresentationTimeCallbackBuffer::SuccessfulCallbackWithDetails>
successful_presentation_callbacks_;
// Event metrics that are reported back from the main thread.
EventMetrics::List events_metrics_from_main_thread_;
// Event metrics that are reported back from the raster thread.
EventMetrics::List event_metrics_from_raster_thread_;
std::unique_ptr<gfx::DelegatedInkMetadata> delegated_ink_metadata_;
// Document transition requests to be transferred to Viz.
std::vector<std::unique_ptr<ViewTransitionRequest>> view_transition_requests_;
// See `CommitState::screenshot_destination_token`.
base::UnguessableToken screenshot_destination_;
// See `CommitState::primary_main_frame_item_sequence_number`.
int64_t primary_main_frame_item_sequence_number_ =
RenderFrameMetadata::kInvalidItemSequenceNumber;
// Used during PullPropertiesFrom().
STACK_ALLOCATED_IGNORE("Correctness ensured by DiscardableImageMapUpdater")
raw_ptr<DiscardableImageMapUpdater> discardable_image_map_updater_;
};
} // namespace cc
#endif // CC_TREES_LAYER_TREE_IMPL_H_
|