Keep rendering context window size in sync when resizing
On X11 we rely on ConfigureNotify event to update rendering context window size, but we don't get such event when resizing programmatically, only when done "manually" by resizing the window etc.
This commit is contained in:
parent
927bcfe646
commit
882d40fa11
1 changed files with 12 additions and 0 deletions
|
@ -1729,6 +1729,18 @@ void DisplayServerX11::window_set_size(const Size2i p_size, WindowID p_window) {
|
||||||
|
|
||||||
usleep(10000);
|
usleep(10000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Keep rendering context window size in sync
|
||||||
|
#if defined(VULKAN_ENABLED)
|
||||||
|
if (context_vulkan) {
|
||||||
|
context_vulkan->window_resize(p_window, xwa.width, xwa.height);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#if defined(GLES3_ENABLED)
|
||||||
|
if (gl_manager) {
|
||||||
|
gl_manager->window_resize(p_window, xwa.width, xwa.height);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
Size2i DisplayServerX11::window_get_size(WindowID p_window) const {
|
Size2i DisplayServerX11::window_get_size(WindowID p_window) const {
|
||||||
|
|
Loading…
Reference in a new issue