summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/context_glx.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-08-31 20:08:08 +0200
committerAnton Kindestam <antonki@kth.se>2018-12-06 10:30:25 +0100
commitb1ba7de34dd5685a082454817f23509d1c28e4aa (patch)
treedc7c077d64742cb728c88fc582f952718a61155d /video/out/opengl/context_glx.c
parent83884fdf03fc991679bea53d3d5bddf97ed16a9b (diff)
downloadmpv-b1ba7de34dd5685a082454817f23509d1c28e4aa.tar.bz2
mpv-b1ba7de34dd5685a082454817f23509d1c28e4aa.tar.xz
vo: use a struct for vsync feedback stuff
So new useless stuff can be easily added.
Diffstat (limited to 'video/out/opengl/context_glx.c')
-rw-r--r--video/out/opengl/context_glx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/video/out/opengl/context_glx.c b/video/out/opengl/context_glx.c
index fe210c5f7d..2a6a2a4cf1 100644
--- a/video/out/opengl/context_glx.c
+++ b/video/out/opengl/context_glx.c
@@ -305,10 +305,10 @@ static void glx_swap_buffers(struct ra_ctx *ctx)
p->latency = update_latency_oml(ctx);
}
-static double glx_get_latency(struct ra_ctx *ctx)
+static void glx_get_vsync(struct ra_ctx *ctx, struct vo_vsync_info *info)
{
struct priv *p = ctx->priv;
- return p->latency;
+ info->latency = p->latency;
}
static bool glx_init(struct ra_ctx *ctx)
@@ -394,7 +394,7 @@ static bool glx_init(struct ra_ctx *ctx)
struct ra_gl_ctx_params params = {
.swap_buffers = glx_swap_buffers,
- .get_latency = glx_get_latency,
+ .get_vsync = glx_get_vsync,
};
if (!ra_gl_ctx_init(ctx, gl, params))