Polystrip
Polystrip is a 2D hardware-accelerated rendering library, primarily targeted at game development, but which could
probably be used in other applications as well. Polystrip intends to be a pure-rust replacement for the sdl2 crate.
Simple example with winit
This example makes a window, a renderer, and only the boilerplate necessary to correctly interface with with polystrip.
let event_loop = new;
let window = new.unwrap;
let window_size = window.inner_size.to_logical;
let mut renderer = new;
event_loop.run;
More examples can be found in the examples directory, and can be run with cargo run --example <name>.