egui/crates/egui_demo_app/src/apps/mod.rs

22 lines
414 B
Rust
Raw Normal View History

#[cfg(all(feature = "glow", not(feature = "wgpu")))]
mod custom3d_glow;
#[cfg(feature = "wgpu")]
mod custom3d_wgpu;
2021-01-01 20:27:10 +00:00
mod fractal_clock;
#[cfg(feature = "http")]
2021-01-01 16:11:05 +00:00
mod http_app;
#[cfg(all(feature = "glow", not(feature = "wgpu")))]
pub use custom3d_glow::Custom3d;
#[cfg(feature = "wgpu")]
pub use custom3d_wgpu::Custom3d;
2021-01-01 20:27:10 +00:00
pub use fractal_clock::FractalClock;
#[cfg(feature = "http")]
2021-01-01 16:11:05 +00:00
pub use http_app::HttpApp;