[ x ] I have ~~followed~~ _read_ the instructions in the PR template Unfortunately i had several issues: - Some snapshot-tests didn't run successfully on osx. diff shows errors around fonts or missing menu items) - cargo clippy doesn't run successfully (egui_kittest cannot find `wgpu` and `image`) - ./scripts/check.sh had other issues on my system (env: python: No such file or directory), even if python3 can be called via python in my shell Is there a system independent, standard way to run these tools (e.g. via Docker?) I submit the pr anyway, because there changes are very simple and shouldn't cause issues. |
||
|---|---|---|
| .. | ||
| src | ||
| CHANGELOG.md | ||
| Cargo.toml | ||
| README.md | ||
README.md
egui_extras
This is a crate that adds some features on top top of egui. This crate is for experimental features, and features that require big dependencies that do not belong in egui.
Images
One thing egui_extras is commonly used for is to install image loaders for egui:
egui_extras = { version = "*", features = ["all_loaders"] }
image = { version = "0.25", features = ["jpeg", "png"] } # Add the types you want support for
egui_extras::install_image_loaders(egui_ctx);