gtk4_glium 0.1.0

Use Gtk4 and Glium together
docs.rs failed to build gtk4_glium-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.

gtk4-glium

Use Glium to render with OpenGL on Gtk4 windows, all in Rust.

Example

For a complete example, see examples/triangle.rs.

Triangle example

Quick Start

let facade = GtkFacade::from_glarea(&glarea);

glarea.connect_render(move |_glarea, _glcontext| {
    let context = facade.get_context();
    let mut frame = Frame::new(context.clone(), context.get_framebuffer_dimensions());

    frame.clear_color(0.0, 0.0, 0.0, 1.0);

    frame.finish().unwrap();
    Inhibit(true)
});