fix: use Glow renderer for app smoke startup #17
Reference in New Issue
Block a user
Delete Branch "feat/terrain-gen-abstraction"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
openvistapro_appshell to eframe's Glow renderer so the Linux/X11/Xvfb smoke path starts without the previous WGPU backend panic.Validation
cargo test native_options_prefer_glow_renderer_for_the_interactive_shell --features appxvfb-run -a sh -c 'target/debug/openvistapro_app >/tmp/ovp_app_smoke.log 2>&1 & pid=$!; sleep 5; if kill -0 "$pid" 2>/dev/null; then echo STARTED; kill "$pid"; wait "$pid" || true; else echo EXITED; fi; cat /tmp/ovp_app_smoke.log'