eframe/native/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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")]
mod wgpu_integration;