scenevm 0.9.7

A GPU-based layer renderer with configurable compute shaders for Eldiron.
Documentation
use uuid::Uuid;
use vek::Vec4;

/// Simple drawable primitives emitted by UI views.
#[derive(Debug, Clone)]
pub enum Drawable {
    /// A textured quad in logical space.
    Quad {
        id: Uuid,
        tile_id: Uuid,
        rect: [f32; 4],    // x, y, w, h
        uv: [[f32; 2]; 4], // uv for each corner
        layer: i32,
        tint: Vec4<f32>,
    },
    /// Solid color rect (no atlas dependency).
    Rect {
        id: Uuid,
        rect: [f32; 4],
        fill: Vec4<f32>,
        border: Vec4<f32>,
        radius_px: f32,
        border_px: f32,
        layer: i32,
    },
    /// Text in logical coordinates (origin at top-left), size in logical pixels.
    Text {
        id: Uuid,
        text: String,
        origin: [f32; 2],
        px_size: f32,
        color: Vec4<f32>,
        layer: i32,
    },
}

#[derive(Debug, Clone, Copy, Default)]
pub struct UiColor(pub Vec4<f32>);

#[derive(Debug, Clone)]
pub struct UiImage {
    pub tile_id: Uuid,
    pub uv: [[f32; 2]; 4],
}