AppKit: Expose native transition state#4610
Open
yay wants to merge 2 commits into
Open
Conversation
yay
commented
Jun 30, 2026
67ace9c to
086c209
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This exposes AppKit native transition state through
WindowExtMacOS:WindowExtMacOS::is_live_resizing()for AppKit live-resize transitions.WindowExtMacOS::is_fullscreen_transition()for native fullscreen enter/exit transitions.It also keeps macOS maximized state cached so callers can poll
Window::is_maximized()without forcingNSWindow.isZoomedto temporarily mutate window style masks, and requests a final redraw when AppKit completes native fullscreen transitions.Motivation
Renderer integrations need to know when AppKit is driving native window transitions so they can synchronize surface presentation and avoid stale or stretched frames during live resize and fullscreen animations.
For a specific example see this egui PR emilk/egui#8280 that depends on this winit PR.
Checks
cargo +nightly fmt --checkcargo check -p winit --all-features