xengui 0.2.7

a retained-mode gui library in rust
Documentation
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: Apache-2.0
use crate::{ AnimationManager, TextMeasurer };

pub struct LayoutContext<'a> {
    pub text: &'a mut dyn TextMeasurer,
    pub anim: &'a mut AnimationManager,
    pub scale_factor: f32,
}