blink::PaintArtifactCompositor
Blink28610 Loka 2025

blink::PaintArtifactCompositor

turns chunks into compositor layers & updates cc property trees.

Consumes the new PaintArtifact and does the layerization and property‑tree updates required for compositor draw. It supports fast paths when only values changed (e.g., opacity) or when a scroll only induces raster invalidation, avoiding full rebuilds. It owns a subtree of cc layers corresponding to the artifact. (Chromium Git Repositories)

Key fields

  • scoped_refptr<cc::Layer> root_layer_ — root of the Blink‑owned layer subtree.

  • UpdateType needs_update_ — kRepaint vs kFull (or scroll fast path).

  • Caches/maps for synthesized mask clips and scroll translations seen while layerizing. (Chromium Git Repositories)

Most important methods

  • bool TryFastPathUpdate(const PaintArtifact&) — take a cheap path (no topology change). (Chromium Git Repositories)

  • void Update(const PaintArtifact&, const ViewportProperties&, const StackScrollTranslationVector&, Vector<std::unique_ptr<cc::ViewTransitionRequest>>) — full reconciliation to layers + cc property trees. (Chromium Git Repositories)

  • “Direct update” helpers like DirectlyUpdateCompositedOpacityValue(...), DirectlyUpdateScrollOffsetTransform(...) — skip rebuilds for common animations/scrolling. (Chromium Git Repositories)

Hands off to: PropertyTreeManager (internally) to mirror Blink property nodes to cc trees, ready for commit to the compositor thread.


Jaksot(396)

PaintLayer Parent Hierarchies in the Blink Rendering Engine

PaintLayer Parent Hierarchies in the Blink Rendering Engine

The provided text details the Blink rendering engine’s PaintLayer system, specifically focusing on the complex "parent" hierarchies used to manage web page display. It explains that while the structur...

29 Joulu 202532min

Blink PrePaint: Fragment Traversal and Paint Property Tree Construction

Blink PrePaint: Fragment Traversal and Paint Property Tree Construction

The provided text explains the PrePaint phase within Blink’s rendering engine, a critical stage where the system prepares for visual output by invalidating old paint and building property trees. Durin...

29 Joulu 202559min

Blink Core Paint Rendering Architecture

Blink Core Paint Rendering Architecture

This documentation details the Blink rendering engine's process for converting a LayoutObject tree into a format the compositor can process. The operation is split into two primary phases: PrePaint, w...

29 Joulu 202541min

Architectural Guide to the Blink PaintLayer System

Architectural Guide to the Blink PaintLayer System

The Blink PaintLayer system serves as a specialized infrastructure within the Chromium rendering engine designed to manage complex visual tasks like stacking, clipping, and compositing. Instead of cre...

29 Joulu 202528min

Gemini CLI Extensibility and Customization Guide

Gemini CLI Extensibility and Customization Guide

The Google Gemini CLI is an open-source terminal assistant designed for high levels of extensibility and customization. Users can expand its capabilities through a pluggable extension system, custom s...

27 Joulu 202535min

Google Gemini Command-Line Interface

Google Gemini Command-Line Interface

The provided text outlines the Google Gemini CLI, an open-source tool that integrates advanced AI language models directly into a developer’s terminal. It functions as an agentic assistant capable of ...

27 Joulu 202538min

Git Grep: The Definitive Technical Guide

Git Grep: The Definitive Technical Guide

This technical guide provides an exhaustive analysis of git grep, a specialized search utility built into the Git version control system. It explains how the tool optimizes code searches by targeting ...

27 Joulu 202537min

The Evolution and Deprecation of Blink’s PaintLayer Tree

The Evolution and Deprecation of Blink’s PaintLayer Tree

The provided text outlines the Blink rendering engine's multi-year transition away from its legacy PaintLayer tree toward a more efficient RenderingNG architecture. Traditionally, PaintLayers managed ...

27 Joulu 202542min