egui/examples/images
Emil Ernerfeldt b27aa27e94
Add `emath::Vec2b`, replacing `egui_plot::AxisBools` (#3543)
Thanks to `impl From<bool> for Vec2b` one can now shorten some builder
calls, like:

Previous:
```rust
 egui::ScrollArea::vertical()
        .auto_shrink([false; 2])
```

New:
```rust
 egui::ScrollArea::vertical()
        .auto_shrink(false)
```
2023-11-11 21:31:36 +01:00
..
src Add `emath::Vec2b`, replacing `egui_plot::AxisBools` (#3543) 2023-11-11 21:31:36 +01:00
Cargo.toml Polish image API (#3338) 2023-09-14 16:33:10 +02:00
README.md Improved texture loading (#3315) 2023-09-12 10:39:17 +02:00
screenshot.png Update example screenshots 2023-09-27 15:34:39 +02:00

README.md

Example showing how to show images with eframe/egui.

cargo run -p images