mirror of
https://github.com/emilk/egui.git
synced 2026-07-17 03:58:53 +00:00
df6f35d568
* Part of https://github.com/emilk/egui/issues/5889 * Closes https://github.com/emilk/egui/issues/7106 This changes the `eframe/wgpu` feature to also enable all the `default` features of `wgpu` and `egui-wgpu`. This makes switching `eframe` backend from `glow` to `wgpu` a lot easier. To get the old behavior (depend on `wgpu` but you must opt-in to all its features), use the new `wgpu_no_default_features` feature.
17 lines
333 B
Rust
17 lines
333 B
Rust
mod app_icon;
|
|
mod epi_integration;
|
|
mod event_loop_context;
|
|
pub mod run;
|
|
|
|
/// File storage which can be used by native backends.
|
|
#[cfg(feature = "persistence")]
|
|
pub mod file_storage;
|
|
|
|
pub(crate) mod winit_integration;
|
|
|
|
#[cfg(feature = "glow")]
|
|
mod glow_integration;
|
|
|
|
#[cfg(feature = "wgpu_no_default_features")]
|
|
mod wgpu_integration;
|