mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
Destroy glx context created for vsync
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
parent
5e8d6bdc2d
commit
a18e8fcdf0
1 changed files with 5 additions and 0 deletions
|
@ -2049,6 +2049,11 @@ static void session_destroy(session_t *ps) {
|
||||||
deinit_render(ps);
|
deinit_render(ps);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (glx_has_context(ps)) {
|
||||||
|
// GLX context created, but not for rendering
|
||||||
|
glx_destroy(ps);
|
||||||
|
}
|
||||||
|
|
||||||
// Flush all events
|
// Flush all events
|
||||||
x_sync(ps->c);
|
x_sync(ps->c);
|
||||||
ev_io_stop(ps->loop, &ps->xiow);
|
ev_io_stop(ps->loop, &ps->xiow);
|
||||||
|
|
Loading…
Reference in a new issue