pub trait TesselateResourceProvider {
    // Required methods
    fn image_id_and_uv_and_size_by_atlas_id(
        &self,
        id: &str
    ) -> Option<(String, Rect, Vec2)>;
    fn fonts(&self) -> &[Font];
    fn font_index_by_id(&self, id: &str) -> Option<usize>;
}

Required Methods§

Implementors§