mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2025-02-05 20:46:27 +01:00
udev: Make match branch reachable
Some checks failed
CI (Pinnacle) / Build (push) Has been cancelled
CI (Pinnacle) / Run tests (push) Has been cancelled
CI (Pinnacle) / Check formatting (push) Has been cancelled
CI (Pinnacle) / Clippy check (push) Has been cancelled
Some checks failed
CI (Pinnacle) / Build (push) Has been cancelled
CI (Pinnacle) / Run tests (push) Has been cancelled
CI (Pinnacle) / Check formatting (push) Has been cancelled
CI (Pinnacle) / Clippy check (push) Has been cancelled
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();
|
||||
|
||||
match mem::take(&mut surface.render_state) {
|
||||
RenderState::Idle => unreachable!(),
|
||||
RenderState::Idle => {
|
||||
// FIXME: this is still reachable after sleep
|
||||
}
|
||||
RenderState::Scheduled => unreachable!(),
|
||||
RenderState::WaitingForVblank { .. } => unreachable!(),
|
||||
RenderState::WaitingForEstimatedVblank(_) => (),
|
||||
|
|
Loading…
Add table
Reference in a new issue