dds-rs 0.2.0

Decodes DirectDraw Surface files
Documentation
dds-rs
======

A library for decoding and encoding DirectDraw Surface files. Currently supports
decoding these texture files:

| Compression | Decoding | Encoding |
|:-----------:|:--------:|:--------:|
|    None     |    X     |          |
|    DXT1     |    X     |          |
|   DXT2/3    |          |          |
|   DXT4/5    |          |          |


Examples
--------

```rust
extern crate dds;

use std::fs::File;
use std::io::BufReader;
use std::path::Path;

use dds::DDS;

fn main() {
    let file = File::open(Path::new("foo.dds")).unwrap();
    let mut reader = BufReader::new(file);

    let dds = DDS::decode(&mut reader).unwrap();
}
```