Skip to content

Commit 278a09d

Browse files
committed
[update] default backend for windows.
1 parent 6e34e23 commit 278a09d

File tree

1 file changed

+1
-1
lines changed
  • crates/lambda-platform/src/gfx

1 file changed

+1
-1
lines changed

crates/lambda-platform/src/gfx/api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if #[cfg(feature = "gfx-with-gl")] {
1717
} else if #[cfg(all(feature = "detect-platform", target_os = "macos"))] {
1818
pub use gfx_backend_metal as RenderingAPI;
1919
} else if #[cfg(all(feature = "detect-platform", unix, not(target_os = "macos")))] {
20-
pub use gfx_backend_vulkan as RenderingAPI;
20+
pub use gfx_backend_gl as RenderingAPI;
2121
} else {
2222
panic!("No supported GPU API found for the current platform.");
2323
}

0 commit comments

Comments
 (0)