sugarloaf 0.1.6

Sugarloaf is Rio rendering engine, designed to be multiplatform. It is based on WebGPU, Rust library for Desktops and WebAssembly for Web (JavaScript). This project is created and maintained for Rio terminal purposes but feel free to use it.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod components;
pub mod context;
pub mod font;
pub mod layout;
mod sugarloaf;

pub use crate::sugarloaf::{
    compositors::SugarCompositors,
    graphics::{
        ColorType, SugarGraphic, SugarGraphicData, SugarGraphicId, SugarloafGraphics,
    },
    primitives::*,
    Sugarloaf, SugarloafErrors, SugarloafRenderer, SugarloafWindow, SugarloafWindowSize,
    SugarloafWithErrors,
};