#Is there way to use egui with winit?
23 messages · Page 1 of 1 (latest)
and does that make sense?
i just want to render simple buttons on screen using some only-rust libraries
You also need something to draw the ui with
winit only gives you the window
but doesn't give you means to draw to that window
You could just use eframe
which uses winit as far as I know
And draws using opengl
if uses winit, do i need to add winit as lib?
do u know lib that uses vk?
wgpu uses vulkan if possible.
You can use egui-wgpu and egui-winit in that case
No, you don't, eframe abstracts it away
It depends on what your goals are
If you just want a gui, just use eframe
If you want to tinker with winit and wgpu, use egui-winit and egui-wgpu
isnt there way to have just gui but with vk?
I don't know