
* Move window building to egui-winit * Move icon loading to egui-winit * `use glow::HasContext;` -> `use glow::HasContext as _;` * Move FileStorage into epi behind a feature flag * De-duplicate screen_size_in_pixels and native_pixels_per_point * Move creation of FileStorage to epi * Handle epi app output (window size changes etc) in egui-winit * Move app and memory persistence and autosave logic to egui-winit * fix check.sh * Make the epi backend opt-in for egui_glium and egui_glow * Fix persistence * Add integration name to epi::IntegrationInfo and the demo * Clean up Cargo.toml files and fix making egui_glium optional * fix typo * Make egui_glium compile without the `epi` feature
41 lines
1.7 KiB
Bash
Executable file
41 lines
1.7 KiB
Bash
Executable file
#!/bin/bash
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
cd "$script_path/.."
|
|
set -eux
|
|
|
|
# Checks all tests, lints etc.
|
|
# Basically does what the CI does.
|
|
|
|
cargo check --workspace --all-targets
|
|
cargo test --workspace --doc
|
|
cargo check --workspace --all-targets --all-features
|
|
cargo check -p egui_demo_app --lib --target wasm32-unknown-unknown
|
|
cargo check -p egui_demo_app --lib --target wasm32-unknown-unknown --all-features
|
|
cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all
|
|
cargo test --workspace --all-targets --all-features
|
|
cargo fmt --all -- --check
|
|
|
|
cargo doc -p emath -p epaint -p egui -p eframe -p epi -p egui_web -p egui-winit -p egui_glium -p egui_glow --lib --no-deps --all-features
|
|
cargo doc -p egui_web --target wasm32-unknown-unknown --lib --no-deps --all-features
|
|
|
|
(cd emath && cargo check --no-default-features)
|
|
(cd epaint && cargo check --no-default-features --features "single_threaded")
|
|
(cd egui && cargo check --no-default-features --features "multi_threaded")
|
|
(cd eframe && cargo check --no-default-features --features "egui_glow")
|
|
(cd epi && cargo check --no-default-features)
|
|
(cd egui_web && cargo check --no-default-features)
|
|
# (cd egui-winit && cargo check --no-default-features) # we don't pick singlethreaded or multithreaded
|
|
(cd egui_glium && cargo check --no-default-features)
|
|
(cd egui_glow && cargo check --no-default-features)
|
|
|
|
# ------------------------------------------------------------
|
|
#
|
|
|
|
# For finding bloat:
|
|
# cargo bloat --release --bin demo_glium -n 200 | rg egui
|
|
|
|
# what compiles slowly?
|
|
# cargo clean; cargo +nightly build -p egui -Z timings
|
|
|
|
# what compiles slowly?
|
|
# cargo llvm-lines --lib -p egui | head -20
|