dxgi 0.1.7

Provides a convenient, higher level wrapping of the DXGI APIs. Targetting dxgi 1.2 stuff that works on Windows 7.
Documentation
1
2
3
4
5
6
7
8
9
10
enum_! {
    #[repr(u32)]
    pub enum ModeRotation {
        Unspecified = 0,
        Identity = 1,
        Rotate90 = 2,
        Rotate180 = 3,
        Rotate270 = 4,
    }
}