blit 0.2.2

Blit sprites on a buffer with a mask
Documentation
# blit
A Rust library for blitting 2D sprites

[![Build Status](https://travis-ci.org/tversteeg/blit.svg?branch=master)](https://travis-ci.org/tversteeg/blit) [![Cargo](https://img.shields.io/crates/v/blit.svg)](https://crates.io/crates/blit) [![License: GPL-3.0](https://img.shields.io/crates/l/blit.svg)](#license) [![Downloads](https://img.shields.io/crates/d/blit.svg)](#downloads)

### [Documentation]https://docs.rs/blit/

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
blit = "0.2"
```

And this to your crate root:

```rust
extern crate blit;
```

### Run the example

    cargo run --example smiley

This should produce the following window:

![Example](img/example.png?raw=true)

## Examples

```rust
use blit::*;

const WIDTH: usize = 180;
const HEIGHT: usize = 180;
const MASK_COLOR: u32 = 0xFFFF00FF;

let mut buffer: Vec<u32> = vec![0xFFFFFFFF; WIDTH * HEIGHT];

let img = image::open("examples/smiley.png").unwrap();
let img_rgb = img.as_rgb8().unwrap();

// Blit directly to the buffer
let pos = (0, 0);
img_rgb.blit_with_mask_color(&mut buffer, (WIDTH, HEIGHT), pos, MASK_COLOR);

// Blit by creating a special blitting buffer first, this has some initial
// overhead but is a lot faster after multiple calls
let blit_buffer = img_rgb.as_blit_buffer(MASK_COLOR);

let pos = (10, 10);
blit_buffer.blit(&mut buffer, (WIDTH, HEIGHT), pos);
let pos = (20, 20);
blit_buffer.blit(&mut buffer, (WIDTH, HEIGHT), pos);
```