DirectX 11 renderer for imgui-rs.
This crate makes use of the ComPtr wrapper of the wio crate. You have to wrap your device pointer in one to pass it to the renderer should you not use these internally already, tho care must be taken in regards of the reference count.
```rust
let device: ComPtr
// rendering loop
let ui = imgui.frame();
// build your window via ui here ...
// then to render call renderer.render(ui.render()).expect("imgui rendering failed"); ```
The crate is documented but imgui-rs doesn't currently build on docs.rs for the windows target. Due to this one has to either build it themselves or look into the source itself.
Licensed under the MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)