imgui-dx9-renderer 0.8.0

DirectX 9 renderer for the imgui crate
docs.rs failed to build imgui-dx9-renderer-0.8.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: imgui-dx9-renderer-0.1.0

imgui-dx9-renderer

Documentation Version

DirectX 9 renderer for imgui-rs.

Usage

This crate makes use of the ComPtr wrapper of the wio crate. You have to either wrap your device pointer in one to pass it to the renderer new constructor or pass it to new_raw which will increment the ref count for you.

let device: *mut IDirect3DDevice9 = /* */;

let mut renderer = unsafe {
    imgui_dx9_renderer::Renderer::new(&mut imgui, wio::com::ComPtr::from_raw(device)).unwrap()
};
// or 
let mut renderer = unsafe {
    imgui_dx9_renderer::Renderer::new_raw(&mut imgui, device).unwrap()
};

Then in your rendering loop it's as easy as calling renderer.render(ui.render()).

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)