You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can't bump glutin dependency in the released version, since this is a breaking change.
We do update it in master though. If you can't reproduce the problem in master, it will be considered fixed.
Short info header:
winit appears to fail occasionally on version 0.21, glutin 0.23 uses winit version 0.21, and gfx-backend-gl uses glutin 0.23.
In other words, if you have the following in your cargo.toml, you may occasionally see the error "redraw event in non-redraw phase" on windows:
It seems like this can be fixed with a glutin version bump.
I'm currently working around this in my own cargo.toml file with something like:
Then, in the root of my crate I have my own winit module, winit.rs with the contents:
Rather than
use winit;
throughout my project I'm doinguse crate::winit;
.This fixes the problem for other platforms but gl still breaks occasionally.
The text was updated successfully, but these errors were encountered: