20 releases (11 breaking)

Uses old Rust 2015

0.12.1 Aug 26, 2023
0.12.0 Jan 14, 2023
0.11.1 Feb 28, 2022
0.11.0 Feb 14, 2021
0.2.2 Jun 6, 2018

#296 in Graphics APIs

Download history 48/week @ 2024-08-19 73/week @ 2024-08-26 47/week @ 2024-09-02 133/week @ 2024-09-09 52/week @ 2024-09-16 212/week @ 2024-09-23 97/week @ 2024-09-30 12/week @ 2024-10-07 61/week @ 2024-10-14 47/week @ 2024-10-21 66/week @ 2024-10-28 68/week @ 2024-11-04 2/week @ 2024-11-11 32/week @ 2024-11-18 78/week @ 2024-11-25 68/week @ 2024-12-02

182 downloads per month
Used in 6 crates

MIT/Apache

15KB
268 lines

imgui-opengl-renderer

Build Status Documentation Version

OpenGL (3+) rendering for imgui-rs

Integration guide

  1. Construct it (passing in an OpenGL function loader from SDL2 or glutin or somesuch).
    let renderer = imgui_opengl_renderer::Renderer::new(&mut imgui, |s| video.gl_get_proc_address(s) as _);
    
  2. Call render to draw the UI.
    renderer.render(ui);
    

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

Dependencies

~12–18MB
~245K SLoC