egui/eframe/src
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
..
native eframe: selectively expose parts of the API based on compile target (#1867) 2022-07-29 14:37:23 +02:00
web eframe: selectively expose parts of the API based on compile target (#1867) 2022-07-29 14:37:23 +02:00
epi.rs eframe: selectively expose parts of the API based on compile target (#1867) 2022-07-29 14:37:23 +02:00
lib.rs Use dark-light on Mac and Windows (#1726) 2022-06-09 17:41:59 +02:00