pub fn add_functions<W, F, C>(module: &mut Module)where
    W: Any + AdvancedWindow,
    F: 'static + Clone,
    C::Texture: CreateTexture<F> + UpdateTexture<F>,
    C: Any + CharacterCache,
Expand description

Adds functions to module, using a generic backend.

W is window. F is factory (to create textures). C is character cache.