Looping on a non-drawn swapChain.Present() will eventually cause a crash
Open
- Dominant language
- C++
- Stars
- 69
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
```
var device = new Device();
var window = new Window({0, 0}, System.GetScreenSize());
var swapChain = new SwapChain(device, window);
while (System.IsRunning()) {
swapChain.GetCurrentTexture();
swapChain.Present();
while (System.HasPendingEvents()) {
System.GetNextEvent();
}
}
```
Contributor guide
Assessment
This issue has not been assessed yet.