why did they do it like that

This commit is contained in:
Quaternions 2023-10-19 20:02:40 -07:00
parent eb376c1e68
commit f8320c9df5

View File

@ -138,13 +138,13 @@ async fn setup<E: Example>(title: &str) -> Setup {
backends,
dx12_shader_compiler,
});
let (size, surface) = unsafe {
let size = window.inner_size();
#[cfg(any(not(target_arch = "wasm32"), target_os = "emscripten"))]
let surface = instance.create_surface(&window).unwrap();
let surface=unsafe{instance.create_surface(&window)}.unwrap();
#[cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))]
let surface = {
let surface={
if let Some(offscreen_canvas_setup) = &offscreen_canvas_setup {
log::info!("Creating surface from OffscreenCanvas");
instance.create_surface_from_offscreen_canvas(
@ -156,9 +156,6 @@ async fn setup<E: Example>(title: &str) -> Setup {
}
.unwrap();
(size, surface)
};
let adapter;
let optional_features = E::optional_features();