egui/epaint/src
Emil Ernerfeldt b7ebe16cfb
Storage and frame refactor (#1418)
The purpose of this is to expose `frame.storage()` and `frame.storage_mut()` so users can save/load app state from the `App::update` function, without having to add another parameter to that function.

Changes:
* Added `Frame::storage()` and `Frame::storage_mut()`
* `App::update` now takes a `&mut Frame` rather than just `&Frame`
* `Frame` is no longer `Clone` or `Sync` (doesn't have to be since https://github.com/emilk/egui/pull/1366)
2022-03-25 21:19:31 +01:00
..
text Improve text contrast in bright mode (#1412) 2022-03-23 16:49:49 +01:00
util OrderedFloat refactor (#918) 2021-12-11 13:52:23 +01:00
bezier.rs Add Shape::visual_bounding_rect() 2022-02-21 21:46:30 +01:00
color.rs Choose your own font and size (#1154) 2022-01-24 14:32:36 +01:00
image.rs Storage and frame refactor (#1418) 2022-03-25 21:19:31 +01:00
lib.rs Improve text contrast in bright mode (#1412) 2022-03-23 16:49:49 +01:00
mesh.rs Add Image::rotate and Mesh::rotate (#1371) 2022-03-22 08:44:23 +01:00
mutex.rs Use atomic_refcell instead of parking_lot for wasm32 targets (#1404) 2022-03-22 15:34:21 +01:00
shadow.rs Refactor TessellationOptions to expose slider for feathering size (#1408) 2022-03-23 11:41:38 +01:00
shape.rs glow painter improvements (#1406) 2022-03-22 23:11:27 +01:00
shape_transform.rs Add Shape::Callback to do custom rendering inside of an egui UI (#1351) 2022-03-14 13:25:11 +01:00
stats.rs Improve the introspection paint stats 2022-03-20 23:05:16 +01:00
stroke.rs Add separate serialize feature and better persitence control (#753) 2021-09-29 08:45:13 +02:00
tessellator.rs Refactor TessellationOptions to expose slider for feathering size (#1408) 2022-03-23 11:41:38 +01:00
texture_atlas.rs Improve text contrast in bright mode (#1412) 2022-03-23 16:49:49 +01:00
texture_handle.rs Partial font texture update (#1149) 2022-01-22 11:23:12 +01:00
textures.rs Introduce egui::FullOutput, returned from Context::run (#1292) 2022-02-22 17:13:53 +01:00