iced-yoda/wgpu/src/primitive.rs

15 lines
230 B
Rust
Raw Normal View History

2019-10-05 19:22:51 +02:00
use iced_native::Rectangle;
#[derive(Debug, Clone)]
pub enum Primitive {
None,
Group {
primitives: Vec<Primitive>,
},
Text {
content: String,
bounds: Rectangle,
size: f32,
},
}