mirui 0.32.2

A lightweight, no_std ECS-driven UI framework for embedded, desktop, and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Concrete renderer implementations. Each backend owns its surface
//! API: `sw` is the always-on CPU rasterizer; the rest are feature
//! gated.

pub mod sw;

#[cfg(feature = "sdl-gpu")]
pub mod sdl_gpu;

#[cfg(all(feature = "web-canvas", target_arch = "wasm32"))]
pub mod web_canvas;

#[cfg(feature = "wgpu")]
pub mod wgpu;