-
-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
core: platform: Input callbacks, corrected framebuffer/window sizes, swapchain handling #1321
Conversation
…re-transparent-window` example
… core has responsibility of swapchain
… triggered by pinch to zoom on a trackpad
…ndow.decoration_color`
Recent changes allow pinch to zoom and a new event to handle that. I also have picked up the change to |
|
…ar_input` events
…or command key blocking `keyUp` on other keys
…in and window/framebuffer sizes
…ndow size actually changed
Signed-off-by: Stephen Gutekanst <[email protected]>
core_window.width = width; | ||
core_window.height = height; | ||
core_window.framebuffer_width = width; | ||
core_window.framebuffer_height = height; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is wrong / a bug - the window width/height should almost certainly not be the same as framebuffer_width/framebuffer_height.
Requires this mach-objc PR to be merged before we can update the zon for this one.