Skip to content

Commit

Permalink
Wayland: Fix missing damage event on window show
Browse files Browse the repository at this point in the history
By definition a hidden window on Wayland does not have valid framebuffer
contents.

This adds a window damage (refresh) event when a window is shown, to
request an initial frame for the now visible window.
  • Loading branch information
elmindreda committed Dec 31, 2021
1 parent c05acf6 commit 25c521c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ information on what to include when reporting a bug.
- [Wayland] Bugfix: Disable key repeat mechanism when window loses input focus
- [Wayland] Bugfix: Window hiding and showing did not work (#1492,#1731)
- [Wayland] Bugfix: A key being repeated was not released when window lost focus
- [Wayland] Bugfix: Showing a hidden window did not emit a window refresh event
- [POSIX] Removed use of deprecated function `gettimeofday`
- [POSIX] Bugfix: `CLOCK_MONOTONIC` was not correctly tested for or enabled
- [WGL] Disabled the DWM swap interval hack for Windows 8 and later (#1072)
Expand Down
1 change: 1 addition & 0 deletions src/wl_window.c
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,7 @@ void _glfwShowWindowWayland(_GLFWwindow* window)
createXdgSurface(window);

window->wl.visible = GLFW_TRUE;
_glfwInputWindowDamage(window);
}
}

Expand Down

0 comments on commit 25c521c

Please sign in to comment.