imgui-sdl2

Crates.ioimgui-sdl2
lib.rsimgui-sdl2
version0.15.3
sourcesrc
created_at2018-05-03 18:28:47.565907
updated_at2023-12-05 06:39:28.414723
descriptionSDL2 Input handling for imgui-rs
homepagehttps://github.com/michaelfairley/rust-imgui-sdl2
repositoryhttps://github.com/michaelfairley/rust-imgui-sdl2
max_upload_size
id63621
size33,111
Michael Fairley (michaelfairley)

documentation

README

imgui-sdl2

Build Status Documentation Version

SDL2 Input handling for imgui-rs

Integration guide

  1. Construct it.
    let mut imgui_sdl2 = imgui_sdl2::ImguiSdl2::new(&mut imgui, &window);
    
  2. At the top of your event handling loop, pass in the input events, and ignore the ones that imgui has captured.
    imgui_sdl2.handle_event(&mut imgui, &event);
    if imgui_sdl2.ignore_event(&event) { continue; }
    
  3. Call prepare_frame before calling imgui.frame().
    imgui_sdl2.prepare_frame(imgui.io_mut(), &window, &event_pump.mouse_state());
    
  4. Call prepare_render immediately before your UI rendering code.
    imgui_sdl2.prepare_render(&ui, &window);
    

Take a look at the example app to see it all in context.

Commit count: 72

cargo fmt