docs.rs failed to build imgui-sdl2-support-0.10.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.
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-sdl2-support-0.13.0
This crate provides a SDL 2 based backend platform for imgui-rs.
A backend platform handles window/input device events and manages their state.
Using the library
There are three things you need to do to use this library correctly:
- Initialize a
SdlPlatforminstance - Pass events to the platform (every frame)
- Call frame preparation callback (every frame)
For a complete example, take a look at the imgui-rs' GitHub repository.