We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e34e23 commit 278a09dCopy full SHA for 278a09d
crates/lambda-platform/src/gfx/api.rs
@@ -17,7 +17,7 @@ if #[cfg(feature = "gfx-with-gl")] {
17
} else if #[cfg(all(feature = "detect-platform", target_os = "macos"))] {
18
pub use gfx_backend_metal as RenderingAPI;
19
} else if #[cfg(all(feature = "detect-platform", unix, not(target_os = "macos")))] {
20
- pub use gfx_backend_vulkan as RenderingAPI;
+ pub use gfx_backend_gl as RenderingAPI;
21
} else {
22
panic!("No supported GPU API found for the current platform.");
23
}
0 commit comments