1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 23:00:04 -04:00

Add basic inspector

This commit is contained in:
lucasmerlin
2026-04-20 12:17:18 +02:00
parent 78c29329a4
commit 06a82eff65
14 changed files with 940 additions and 12 deletions

View File

@@ -29,6 +29,9 @@ snapshot = ["dep:dify", "dep:image", "dep:open", "dep:tempfile", "image/png"]
## Record a test session as an animated GIF or PNG sequence.
recording = ["dep:image", "image/gif", "image/png"]
## Stream frames + accesskit tree to a `kittest_inspector` window for live debugging.
inspector = ["dep:image", "dep:kittest_inspector"]
## Allows testing eframe::App
eframe = ["dep:eframe", "eframe/accesskit"]
@@ -53,6 +56,9 @@ wgpu = { workspace = true, features = ["metal", "dx12", "vulkan", "gles"], optio
# snapshot dependencies
dify = { workspace = true, optional = true }
# inspector dependencies
kittest_inspector = { workspace = true, default-features = false, optional = true }
# Enable this when generating docs.
document-features = { workspace = true, optional = true }