Skip to main content

cbf_compositor/core/
mod.rs

1//! Core compositor orchestration and public command types.
2//!
3//! The core module owns scene state, ownership relationships, and window
4//! attachment while platform and backend adapters remain internal details.
5
6mod commands;
7mod compositor;
8
9pub use commands::CompositionCommand;
10pub use compositor::{
11    AttachWindowOptions, Compositor, EventRouter, EventRoutingDecision, RoutedEventContext,
12    RoutedEventKind,
13};