summaryrefslogtreecommitdiffstats
path: root/video/out/gpu
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-04-20 19:28:38 +0200
committerJan Ekström <jeebjp@gmail.com>2018-04-29 02:21:32 +0300
commit9825bbb8cf5090bbc9bd652687f2f196de54e7f7 (patch)
tree706c0a709de67b1593ab7e7f803e8d0c3d8cb570 /video/out/gpu
parent67689ff6b42173b72bffecf23de3507e3ab605b0 (diff)
downloadmpv-9825bbb8cf5090bbc9bd652687f2f196de54e7f7.tar.bz2
mpv-9825bbb8cf5090bbc9bd652687f2f196de54e7f7.tar.xz
vo_libmpv: add support for DR
With all the preparation work done, this only has to do the annoying dance of passing it through all the damn layers.
Diffstat (limited to 'video/out/gpu')
-rw-r--r--video/out/gpu/libmpv_gpu.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/video/out/gpu/libmpv_gpu.c b/video/out/gpu/libmpv_gpu.c
index d08b3a56b9..3674d678c7 100644
--- a/video/out/gpu/libmpv_gpu.c
+++ b/video/out/gpu/libmpv_gpu.c
@@ -182,6 +182,14 @@ static int render(struct render_backend *ctx, mpv_render_param *params,
return 0;
}
+static struct mp_image *get_image(struct render_backend *ctx, int imgfmt,
+ int w, int h, int stride_align)
+{
+ struct priv *p = ctx->priv;
+
+ return gl_video_get_image(p->renderer, imgfmt, w, h, stride_align);
+}
+
static void destroy(struct render_backend *ctx)
{
struct priv *p = ctx->priv;
@@ -208,5 +216,6 @@ const struct render_backend_fns render_backend_gpu = {
.resize = resize,
.get_target_size = get_target_size,
.render = render,
+ .get_image = get_image,
.destroy = destroy,
};