egui/eframe/src/native
Emil Ernerfeldt 8c09804abd
eframe: selectively expose parts of the API based on compile target (#1867)
A lot of the `eframe` API is native-only or web-only. With this PR, only the parts that are implemented for each platform is exposed.

This means you'll need to add `#[cfg(target_arch = "wasm32")]` around code that uses the web-parts of the eframe API, and add `#[cfg(not(target_arch = "wasm32"))]` around the parts that are for native/desktop.
2022-07-29 14:37:23 +02:00
..
epi_integration.rs eframe: selectively expose parts of the API based on compile target (#1867) 2022-07-29 14:37:23 +02:00
file_storage.rs Remove egui_web and epi (#1545) 2022-04-30 10:44:35 +02:00
mod.rs Add egui_wgpu crate (#1564) 2022-05-12 09:02:28 +02:00
run.rs Add Context::request_repaint_after (#1694) 2022-06-22 13:19:13 +02:00