Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update egui to 0.29 and winit to 0.30 #197

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ base64 = "0.21"
bitflags = "2"
bytemuck = { version = "1", features = ["derive"] }
choir = "0.7"
egui = "0.28"
egui = "0.29"
glam = { version = "0.27", features = ["mint"] }
gltf = { version = "1.1", default-features = false }
log = "0.4"
Expand All @@ -29,7 +29,7 @@ profiling = "1"
slab = "0.4"
strum = { version = "0.25", features = ["derive"] }
web-sys = "0.3.60"
winit = "0.29"
winit = "0.30"

[lib]

Expand Down Expand Up @@ -75,7 +75,7 @@ blade-macros = { version = "0.3", path = "blade-macros" }
bytemuck = { workspace = true }
choir = { workspace = true }
egui = { workspace = true }
transform-gizmo-egui = { git = "https://github.com/urholaukkarinen/transform-gizmo", rev = "5be085444468ff7059abcd4e4872ab4510f65a06" }
transform-gizmo-egui = { git = "https://github.com/urholaukkarinen/transform-gizmo", rev = "7556fb38b37f3772c57dd0fae6a276976d314f9b" }
env_logger = "0.11"
glam = { workspace = true }
log = { workspace = true }
Expand All @@ -91,7 +91,7 @@ del-geo = "=0.1.29"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
# see https://github.com/emilk/egui/issues/4270
egui-winit = "0.28"
egui-winit = "0.29"

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
console_error_panic_hook = "0.1.7"
Expand Down
8 changes: 4 additions & 4 deletions examples/bunnymark/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,10 @@ fn main() {
env_logger::init();

let event_loop = winit::event_loop::EventLoop::new().unwrap();
let window = winit::window::WindowBuilder::new()
.with_title("blade-bunnymark")
.build(&event_loop)
.unwrap();
let window_attributes =
winit::window::Window::default_attributes().with_title("blade-bunnymark");

let window = event_loop.create_window(window_attributes).unwrap();

#[cfg(target_arch = "wasm32")]
{
Expand Down
10 changes: 5 additions & 5 deletions examples/move/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ impl Game {
fn new(event_loop: &winit::event_loop::EventLoop<()>) -> Self {
log::info!("Initializing");

let window = winit::window::WindowBuilder::new()
.with_title("Move")
.build(event_loop)
.unwrap();
let window_attributes =
winit::window::Window::default_attributes().with_title("blade-move");

let window = event_loop.create_window(window_attributes).unwrap();

let camera = ControlledCamera {
inner: Camera {
Expand Down Expand Up @@ -89,7 +89,7 @@ impl Game {
let egui_context = egui::Context::default();
let egui_viewport_id = egui_context.viewport_id();
let egui_state =
egui_winit::State::new(egui_context, egui_viewport_id, &window, None, None);
egui_winit::State::new(egui_context, egui_viewport_id, &window, None, None, None);

Self {
engine,
Expand Down
10 changes: 5 additions & 5 deletions examples/particle/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ fn main() {
env_logger::init();

let event_loop = winit::event_loop::EventLoop::new().unwrap();
let window = winit::window::WindowBuilder::new()
.with_title("blade-particle")
.build(&event_loop)
.unwrap();
let window_attributes =
winit::window::Window::default_attributes().with_title("blade-particle");

let window = event_loop.create_window(window_attributes).unwrap();

let egui_ctx = egui::Context::default();
let viewport_id = egui_ctx.viewport_id();
let mut egui_winit = egui_winit::State::new(egui_ctx, viewport_id, &window, None, None);
let mut egui_winit = egui_winit::State::new(egui_ctx, viewport_id, &window, None, None, None);

let mut example = Example::new(&window);

Expand Down
9 changes: 4 additions & 5 deletions examples/ray-query/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,11 +328,10 @@ fn main() {
env_logger::init();

let event_loop = winit::event_loop::EventLoop::new().unwrap();
let window = winit::window::WindowBuilder::new()
.with_title("blade-ray-query")
.with_transparent(true)
.build(&event_loop)
.unwrap();
let window_attributes =
winit::window::Window::default_attributes().with_title("blade-ray-query");

let window = event_loop.create_window(window_attributes).unwrap();

let mut example = Example::new(&window);

Expand Down
9 changes: 4 additions & 5 deletions examples/scene/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -792,14 +792,13 @@ fn main() {
env_logger::init();

let event_loop = winit::event_loop::EventLoop::new().unwrap();
let window = winit::window::WindowBuilder::new()
.with_title("blade-scene")
.build(&event_loop)
.unwrap();
let window_attributes = winit::window::Window::default_attributes().with_title("blade-scene");

let window = event_loop.create_window(window_attributes).unwrap();

let egui_ctx = egui::Context::default();
let viewport_id = egui_ctx.viewport_id();
let mut egui_winit = egui_winit::State::new(egui_ctx, viewport_id, &window, None, None);
let mut egui_winit = egui_winit::State::new(egui_ctx, viewport_id, &window, None, None, None);

let mut args = std::env::args();
let path_to_scene = args
Expand Down
9 changes: 4 additions & 5 deletions examples/vehicle/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,9 @@ impl Game {
fn new(event_loop: &winit::event_loop::EventLoop<()>) -> Self {
log::info!("Initializing");

let window = winit::window::WindowBuilder::new()
.with_title("RayCraft")
.build(event_loop)
.unwrap();
let window_attributes = winit::window::Window::default_attributes().with_title("RayCraft");

let window = event_loop.create_window(window_attributes).unwrap();

let cam_config = config::Camera {
distance: 5.0,
Expand Down Expand Up @@ -306,7 +305,7 @@ impl Game {
let egui_context = egui::Context::default();
let egui_viewport_id = egui_context.viewport_id();
let egui_state =
egui_winit::State::new(egui_context, egui_viewport_id, &window, None, None);
egui_winit::State::new(egui_context, egui_viewport_id, &window, None, None, None);

Self {
engine,
Expand Down