Fix non-windows compilation

This commit is contained in:
Simon Gellis 2024-11-03 12:44:38 -05:00
parent 40c4561748
commit 8fdff927eb
1 changed files with 5 additions and 3 deletions

View File

@ -3,13 +3,14 @@ use imgui_wgpu::{Renderer, RendererConfig};
use imgui_winit_support::WinitPlatform;
use pollster::block_on;
use std::{num::NonZero, sync::Arc, time::Instant};
#[cfg(target_os = "windows")]
use winit::platform::windows::{CornerPreference, WindowAttributesExtWindows as _};
use winit::{
application::ApplicationHandler,
dpi::LogicalSize,
event::{ElementState, Event, WindowEvent},
event_loop::ActiveEventLoop,
keyboard::Key,
platform::windows::{CornerPreference, WindowAttributesExtWindows},
window::Window,
};
@ -51,8 +52,9 @@ impl AppWindow {
let attributes = Window::default_attributes()
.with_inner_size(size)
.with_title("Shrooms VB")
.with_corner_preference(CornerPreference::DoNotRound);
.with_title("Shrooms VB");
#[cfg(target_os = "windows")]
let attributes = attributes.with_corner_preference(CornerPreference::DoNotRound);
Arc::new(event_loop.create_window(attributes).unwrap())
};