1
2
3
4
5
6
7
8
9
10
11
//! Drawing related code for Layer, Scene, and Text.
//! The functions in this module are used to draw into a Skia canvas
//! independent from the backend

pub(crate) mod layer;
pub(crate) mod scene;
pub use layer::draw_layer;
pub use scene::{
    draw_scene, node_tree_list, node_tree_list_visible, paint_node_tree, print_scene,
    render_node_tree,
};