Skip to content
Snippets Groups Projects
Commit 7251119a authored by Jeffrey Knockel's avatar Jeffrey Knockel Committed by Hugo Beauzée-Luyssen
Browse files

egl: set northwest bit gravity on output window

If necessary, set bit gravity on Open() and restore on Close().  This
fixes black flickering on resize.

Fixes #25716 for EGL.
parent 96100d05
No related branches found
No related tags found
1 merge request!1534vout: set northwest bit gravity on X11 windows
......@@ -50,6 +50,7 @@ typedef struct vlc_gl_sys_t
EGLContext context;
#if defined (USE_PLATFORM_X11)
Display *x11;
bool restore_forget_gravity;
#endif
#if defined (USE_PLATFORM_WAYLAND)
struct wl_egl_window *window;
......@@ -163,8 +164,16 @@ static void Close(vlc_gl_t *gl)
eglTerminate(sys->display);
}
#ifdef USE_PLATFORM_X11
if (sys->x11 != NULL)
if (sys->x11 != NULL) {
if (sys->restore_forget_gravity) {
vout_window_t *wnd = gl->surface;
XSetWindowAttributes swa;
swa.bit_gravity = ForgetGravity;
XChangeWindowAttributes(sys->x11, wnd->handle.xid, CWBitGravity,
&swa);
}
XCloseDisplay(sys->x11);
}
#endif
#ifdef USE_PLATFORM_WAYLAND
if (sys->window != NULL)
......@@ -222,10 +231,18 @@ static int Open(vlc_gl_t *gl, const struct gl_api *api,
int snum;
{
XWindowAttributes wa;
XSetWindowAttributes swa;
sys->restore_forget_gravity = false;
if (!XGetWindowAttributes(sys->x11, wnd->handle.xid, &wa))
goto error;
snum = XScreenNumberOfScreen(wa.screen);
if (wa.bit_gravity == ForgetGravity) {
swa.bit_gravity = NorthWestGravity;
XChangeWindowAttributes(sys->x11, wnd->handle.xid, CWBitGravity,
&swa);
sys->restore_forget_gravity = true;
}
}
# ifdef EGL_EXT_platform_x11
if (CheckClientExt("EGL_EXT_platform_x11"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment