Exit not correctly tearing down graphics stack??
- Dominant language
- Rust
- Stars
- 48.2k
- Forks
- 4.8k
- Avg merge
- 3d 22h
- Merged PRs (30d)
- 161
Description
## Bevy version
0.13.2
## Relevant system information
Rust Nightly as of 2024/05/24
```rust
AdapterInfo { name: "NVIDIA GeForce RTX 3090", vendor: 4318, device: 8708, device_type: DiscreteGpu, driver: "NVIDIA", driver_info: "555.85", backend: Vulkan }
```
## What you did
Created the following minimal app:
```rust
fn main() {
let mut app = App::new();
app.add_plugins(DefaultPlugins.set(LogPlugin {
filter: "warn".to_string(),
..default()
}));
app.run();
}
```
## What went wrong
log returns the following warnings:
```bash
2024-05-24T22:19:28.192821Z WARN log: Process is terminating. Using simple reporting. Please call ReportLiveObjects() at runtime for standard reporting.
2024-05-24T22:19:28.192988Z WARN log: Live Producer at 0x00000204D606BDA0, Refcount: 1.
2024-05-24T22:19:28.193070Z WARN log: Live Object at 0x00000204CDCA5B90, Refcount: 0.
2024-05-24T22:19:28.193125Z WARN log: Live Object at 0x00000204D63920D0, Refcount: 0.
2024-05-24T22:19:28.193180Z WARN log: Live Object at 0x00000204D63B8160, Refcount: 0.
2024-05-24T22:19:28.193229Z WARN log: Live Object at 0x00000204D6415A80, Refcount: 0.
2024-05-24T22:19:28.193284Z WARN log: Live Object at 0x00000204D64469A0, Refcount: 0.
2024-05-24T22:19:28.193334Z WARN log: Live Object at 0x00000204D4152630, Refcount: 0.
2024-05-24T22:19:28.193388Z WARN log: Live Object at 0x00000204D6198DE0, Refcount: 0.
2024-05-24T22:19:28.193442Z WARN log: Live Object at 0x00000204D63A9990, Refcount: 0.
2024-05-24T22:19:28.193494Z WARN log: Live Object at 0x00000204CDC7F390, Refcount: 0.
2024-05-24T22:19:28.193547Z WARN log: Live Object : 9
```
Contributor guide
Assessment
This issue has not been assessed yet.