simple_editor\engine/
mod.rs

1//! Rendering / mixing / export engine. Pure CPU, RGBA8 + f32 audio. Shared by preview and export.
2
3pub mod autocut;
4pub mod blend;
5pub mod capture;
6pub mod compose;
7pub mod convert;
8pub mod effects;
9pub mod export;
10pub mod gpu;
11pub mod import;
12pub mod mixer;
13pub mod mixer_fx;
14pub mod prerender;
15pub mod presets;
16pub mod shaders;
17pub mod shapes;
18pub mod style;
19pub mod subtitles;
20pub mod text;
21pub mod tracking;
22pub mod transcribe;
23pub mod xmeml;