mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-11 05:21:31 +11:00
Remove FramebufferSizeChanged event
This commit is contained in:
parent
f5080a2b29
commit
0103fb833e
|
@ -31,9 +31,6 @@ pub enum Event {
|
||||||
/// The system asked that the content of this window must be redrawn.
|
/// The system asked that the content of this window must be redrawn.
|
||||||
NeedRefresh,
|
NeedRefresh,
|
||||||
|
|
||||||
/// The size of the framebuffer of the window has changed.
|
|
||||||
FramebufferSizeChanged(uint, uint),
|
|
||||||
|
|
||||||
/// An element has been pressed.
|
/// An element has been pressed.
|
||||||
Pressed(Element),
|
Pressed(Element),
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
extern crate libc;
|
extern crate libc;
|
||||||
|
|
||||||
pub use events::{Event, Element, PositionChanged, SizeChanged, Closed, CursorPositionChanged, Focused};
|
pub use events::{Event, Element, PositionChanged, SizeChanged, Closed, CursorPositionChanged, Focused};
|
||||||
pub use events::{Iconified, NeedRefresh, FramebufferSizeChanged};
|
pub use events::{Iconified, NeedRefresh};
|
||||||
pub use hints::{Hints, ClientAPI, Profile};
|
pub use hints::{Hints, ClientAPI, Profile};
|
||||||
|
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
|
|
Loading…
Reference in a new issue