Crow

Documentation Crates.io License: MIT

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.

The most recent documentation can be found here.

The latest release can be viewed at the 0.5.0 tag.

You may also want to consider looking at akari, a WIP showcase project.

This crate requires a GPU supporting OpenGL Version 3.3.

Examples

```rust use crow::{ glutin::{Event, WindowBuilder, WindowEvent}, Context, DrawConfig, Texture, };

fn main() -> Result<(), crow::Error> { let mut ctx = Context::new(WindowBuilder::new())?;

let texture = Texture::load(&mut ctx, "./textures/player.png")?;
let mut surface = ctx.window_surface();

let mut fin = false;
loop {
    ctx.events_loop().poll_events(|event| {
        if let Event::WindowEvent {
            event: WindowEvent::CloseRequested,
            ..
        } = event
        {
            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(())

} ```