dxgi 0.3.0-alpha4

Provides a convenient, higher level wrapping of the DXGI APIs. Targetting dxgi 1.2 stuff that works on Windows 7.
Documentation
use com_wrapper::ComWrapper;
use winapi::shared::dxgi::IDXGIDeviceSubObject;
use wio::com::ComPtr;

#[repr(transparent)]
#[derive(ComWrapper)]
#[com(send, sync, debug)]
pub struct DeviceSubObject {
    ptr: ComPtr<IDXGIDeviceSubObject>,
}

pub trait GraphicsDevice: ComWrapper {}