mirror of
https://github.com/emilk/egui.git
synced 2026-09-01 14:20:04 -04:00
Remove dead code (EpiIntegration::frame_start) (#4790)
`frame_start` appears to be deprecated now. ( Am I wrong? ) It would be a good idea to add `#[allow(dead_code)]` or remove `frame_start`.
This commit is contained in:
@@ -154,7 +154,6 @@ pub struct EpiIntegration {
|
|||||||
last_auto_save: Instant,
|
last_auto_save: Instant,
|
||||||
pub beginning: Instant,
|
pub beginning: Instant,
|
||||||
is_first_frame: bool,
|
is_first_frame: bool,
|
||||||
pub frame_start: Instant,
|
|
||||||
pub egui_ctx: egui::Context,
|
pub egui_ctx: egui::Context,
|
||||||
pending_full_output: egui::FullOutput,
|
pending_full_output: egui::FullOutput,
|
||||||
|
|
||||||
@@ -227,7 +226,6 @@ impl EpiIntegration {
|
|||||||
app_icon_setter,
|
app_icon_setter,
|
||||||
beginning: Instant::now(),
|
beginning: Instant::now(),
|
||||||
is_first_frame: true,
|
is_first_frame: true,
|
||||||
frame_start: Instant::now(),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user