#egui #vulkano #vulkan #back-end

egui_vulkano

Vulkano graphics backend for egui

8 releases (breaking)

0.8.0 May 7, 2022
0.7.0 Mar 26, 2022
0.6.0 Feb 23, 2022
0.5.0 Feb 7, 2022
0.1.0 Apr 20, 2021

#558 in GUI

Download history 27/week @ 2024-01-15 6/week @ 2024-01-22 4/week @ 2024-01-29 15/week @ 2024-02-19 23/week @ 2024-02-26 11/week @ 2024-03-04 24/week @ 2024-03-11 7/week @ 2024-03-18 15/week @ 2024-03-25

60 downloads per month
Used in amdguid-wayland

GPL-3.0-or-later

35KB
412 lines

Vulkano backend for egui

Latest version Documentation

This is a drawing backend to use egui with Vulkano. It can be used with egui-winit for input handling.

Usage

let mut egui_painter = egui_vulkano::Painter::new(
    device.clone(), // your Vulkano Device
    queue.clone(), // your Vulkano Queue
    Subpass::from(render_pass.clone(), 1).unwrap(), // subpass that you set up to render the gui
)
.unwrap();

// ...

// Get the shapes from egui
let egui_output = egui_ctx.end_frame();
let result = egui_painter.update_textures(egui_output.textures_delta, &mut builder).unwrap();
// If using egui-winit:
egui_winit.handle_platform_output(surface.window(), &egui_ctx, egui_output.platform_output);

// Do your own rendering ...

// Automatically start the next render subpass and draw the gui
egui_painter
    .draw(
        &mut builder, // your vulkano AutoCommandBufferBuilder
        [width, height], // window size
        &egui_ctx, // your egui CtxRef
        egui_output.shapes // shapes from egui,
    )
    .unwrap();

Check the included working example for more info.

Pull requests are welcome!

Credits

With inspiration from egui_winit_ash_vk_mem, egui_sdl2_gl and egui_glium.

Dependencies

~51MB
~1M SLoC