mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-12-25 09:59:21 +01:00
udev: Make match branch reachable
Temporary until I can figure out why it's reachable
This commit is contained in:
parent
4b1c4f53e1
commit
975da0d14e
1 changed files with 3 additions and 1 deletions
|
@ -1580,7 +1580,9 @@ impl Udev {
|
||||||
surface.frame_callback_sequence.increment();
|
surface.frame_callback_sequence.increment();
|
||||||
|
|
||||||
match mem::take(&mut surface.render_state) {
|
match mem::take(&mut surface.render_state) {
|
||||||
RenderState::Idle => unreachable!(),
|
RenderState::Idle => {
|
||||||
|
// FIXME: this is still reachable after sleep
|
||||||
|
}
|
||||||
RenderState::Scheduled => unreachable!(),
|
RenderState::Scheduled => unreachable!(),
|
||||||
RenderState::WaitingForVblank { .. } => unreachable!(),
|
RenderState::WaitingForVblank { .. } => unreachable!(),
|
||||||
RenderState::WaitingForEstimatedVblank(_) => (),
|
RenderState::WaitingForEstimatedVblank(_) => (),
|
||||||
|
|
Loading…
Reference in a new issue