summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/context_glx.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/opengl/context_glx.c')
-rw-r--r--video/out/opengl/context_glx.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/video/out/opengl/context_glx.c b/video/out/opengl/context_glx.c
index 677260c197..6ca9f19d3e 100644
--- a/video/out/opengl/context_glx.c
+++ b/video/out/opengl/context_glx.c
@@ -223,6 +223,11 @@ static void update_vsync_oml(struct ra_ctx *ctx)
oml_sync_swap(&p->sync, ust, msc, sbc);
}
+static bool glx_check_visible(struct ra_ctx *ctx)
+{
+ return vo_x11_check_visible(ctx->vo);
+}
+
static void glx_swap_buffers(struct ra_ctx *ctx)
{
struct priv *p = ctx->priv;
@@ -313,6 +318,7 @@ static bool glx_init(struct ra_ctx *ctx)
goto uninit;
struct ra_gl_ctx_params params = {
+ .check_visible = glx_check_visible,
.swap_buffers = glx_swap_buffers,
.get_vsync = glx_get_vsync,
};