cbf-compositor 0.1.0-alpha.9

Scene-based browser surface compositor for CBF applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core compositor orchestration and public command types.
//!
//! The core module owns scene state, ownership relationships, and window
//! attachment while platform and backend adapters remain internal details.

mod commands;
mod compositor;

pub use commands::CompositionCommand;
pub use compositor::{
    AttachWindowOptions, Compositor, EventRouter, EventRoutingDecision, RoutedEventContext,
    RoutedEventKind,
};