From 8ba18430800142965549077373e2a45d0a3429a1 Mon Sep 17 00:00:00 2001 From: Bingus Date: Mon, 13 Mar 2023 14:16:45 -0700 Subject: Code cleanup, clearer comments + removed some unnecessary dupe; Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping; --- native/src/window.rs | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'native') diff --git a/native/src/window.rs b/native/src/window.rs index a8f8b10f..660cd54f 100644 --- a/native/src/window.rs +++ b/native/src/window.rs @@ -30,20 +30,9 @@ use crate::time::Instant; /// /// In any case, this [`Subscription`] is useful to smoothly draw application-driven /// animations without missing any frames. -pub fn frames() -> Subscription { +pub fn frames() -> Subscription { subscription::raw_events(|event, _status| match event { - crate::Event::Window(id, Event::RedrawRequested(at)) => { - Some(Frame { id, at }) - } + crate::Event::Window(_, Event::RedrawRequested(at)) => Some(at), _ => None, }) } - -/// The returned `Frame` for a framerate subscription. -#[derive(Debug)] -pub struct Frame { - /// The `window::Id` that the `Frame` was produced in. - pub id: Id, - /// The `Instant` at which the frame was produced. - pub at: Instant, -} -- cgit