tessera-ui-basic-components 2.7.0

Basic components for tessera-ui
Documentation
1
2
3
4
5
6
7
8
9
use tessera_ui::{Color, DrawCommand};

/// Draw command for the simple rectangle pipeline.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct SimpleRectCommand {
    pub color: Color,
}

impl DrawCommand for SimpleRectCommand {}