docs.rs failed to build dear-imgui-winit-0.1.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:
dear-imgui-winit-0.13.0
Winit platform backend for Dear ImGui
This crate provides a platform backend for Dear ImGui that integrates with the winit windowing library. It handles window events, input processing, and platform-specific functionality including multi-viewport support.
Features
- Basic Platform Support: Window events, input handling, cursor management
- Multi-Viewport Support: Create and manage multiple OS windows (requires
multi-viewportfeature) - DPI Awareness: Proper handling of high-DPI displays
Example - Basic Usage
use Context;
use WinitPlatform;
use EventLoop;
let event_loop = new.unwrap;
let mut imgui_ctx = create_or_panic;
let mut platform = new;
// Use in your event loop...
Example - Multi-Viewport Support
#
#