6bb1809690
- This commit fixes the regular build and the glium example. The WGPU example needs an updated imgui-wgpu to point to the new imgui-sys version for things to work. - The im_str and ImString usage deprecations are not fixed yet. - There is no version bump for cimplot yet. |
||
---|---|---|
.. | ||
examples-shared | ||
implot-glium-demo | ||
implot-wgpu-demo | ||
README.md |
Examples
This folder contains examples that demonstrate how to use the Rust bindings. Things are structured as follows:
- examples-shared is a library crate that contains the actual usage examples. It is used in the backend-specific crates.
- implot-glium-demo is an example for using
implot-rs
in conjunction with a Glium backend. - implot-wgpu-demo is an example for using
implot-rs
in conjunction with a WebGPU backend
If you want to just copy-paste code to start with, copy examples-shared
along with
your favourite backend example crate. The glium backend code is largely taken from imgui-rs.