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
//! Node implementations for the graph evaluator. One file per op.
//!
//! Ops are grouped into category submodules:
//!
//! - [`raster`] — raster utility ops (`solid`, `circle`, `blur`,
//! `blend`)
//! - [`source`] — feature sources, either bound by the host (MVT,
//! GeoJSON, …) or synthesized (`features`, `literal-geometry`,
//! `tile-bounds`, `point-grid`)
//! - [`paint`] — paint features onto a canvas (`fill-solid`,
//! `fill-dabs`, `line`, `stamp`, `brush-file`)
//! - [`brush`] — `() -> Brush` sources: load a brush asset
//! (`brush-file`) or synthesize one (`brush-solid`)
//! - [`geometry`] — `Features -> Features` transforms (`centroid`,
//! `boundary`, `simplify`, `convex-hull`, `buffer`, `hatch`,
//! `dash`, `wave`)
//!
//! Each op file ends in `ezu_graph::submit_node!(...Factory)` which
//! registers it with the global inventory. [`default_registry`] simply
//! collects everything that's been submitted — adding a new op means
//! creating a file and submitting it; no edits here required.
//!
//! The `features` node resolves tile-scoped layers through the
//! unified [`AssetLoader`](ezu_graph::AssetLoader) under reserved
//! `tile.<layer>` names — like sampling a shader uniform. The host
//! (e.g. the `tokyo` example) decodes its MVT/GeoJSON input into
//! [`ezu_features::FeatureLayer`] and binds each layer before rendering.
//!
//! Shared helpers (parameter parsing, color conversion, Canvas
//! plumbing, payload downcasting) live in [`common`].
use NodeRegistry;
pub use ;
/// Build a registry of every built-in op, collected from
/// `ezu_graph::submit_node!` submissions across the linked crates.