imgui-dx11-renderer

Documentation Version

DirectX 11 renderer for imgui-rs.

Usage

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 = ...; let imgui: imgui::Context = ...; let mut renderer = imguidx11renderer::Renderer::new(&mut imgui, device.clone()).expect("imgui dx11 renderer creation failed");

// rendering loop

let ui = imgui.frame();

// build your window via ui here ...

// then to render call renderer.render(ui.render()).expect("imgui rendering failed"); ```

Documentation

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.

License

Licensed under the MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)