A simple and fairly efficient pixel based 2D graphics library. crow is designed to be easy to use and should allow users to do nearly everything they want without requiring custom renderers or unsafe code.
```rust use crow::{ glutin::{Event, EventsLoop, WindowBuilder, WindowEvent}, Context, DrawConfig, Texture, };
fn main() -> Result<(), crow::Error> { let mut ctx = Context::new(WindowBuilder::new(), EventsLoop::new())?;
let texture = Texture::load(&mut ctx, "./textures/player.png").expect("Unable to load texture");
let mut surface = ctx.window_surface();
let mut fin = false;
loop {
ctx.events_loop().poll_events(|event| match event {
Event::WindowEvent {
event: WindowEvent::CloseRequested,
..
} => fin = true,
_ => (),
});
ctx.clear_color(&mut surface, (0.4, 0.4, 0.8, 1.0))?;
ctx.draw(&mut surface, &texture, (100, 150), &DrawConfig::default())?;
ctx.finalize_frame()?;
if fin {
break;
}
}
Ok(())
}
```