mirror of
https://github.com/emilk/egui.git
synced 2026-09-01 06:10:06 -04:00
Update to winit 0.27.2, glutin 0.29.0, glium 0.32 (#1914)
This commit is contained in:
@@ -46,7 +46,7 @@ egui-winit = { version = "0.18.0", path = "../egui-winit", default-features = fa
|
||||
|
||||
ahash = "0.7"
|
||||
bytemuck = "1.7"
|
||||
glium = "0.31"
|
||||
glium = "0.32"
|
||||
|
||||
#! ### Optional dependencies
|
||||
## Enable this when generating docs.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
use glium::glutin;
|
||||
|
||||
fn main() {
|
||||
let event_loop = glutin::event_loop::EventLoop::with_user_event();
|
||||
let event_loop = glutin::event_loop::EventLoopBuilder::with_user_event().build();
|
||||
let display = create_display(&event_loop);
|
||||
|
||||
let mut egui_glium = egui_glium::EguiGlium::new(&display, &event_loop);
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
use glium::glutin;
|
||||
|
||||
fn main() {
|
||||
let event_loop = glutin::event_loop::EventLoop::with_user_event();
|
||||
let event_loop = glutin::event_loop::EventLoopBuilder::with_user_event().build();
|
||||
let display = create_display(&event_loop);
|
||||
|
||||
let mut egui_glium = egui_glium::EguiGlium::new(&display, &event_loop);
|
||||
|
||||
Reference in New Issue
Block a user