summaryrefslogtreecommitdiffstats
path: root/video/out/vo_gpu_next.c
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2021-12-19 01:39:48 +0100
committersfan5 <sfan5@live.de>2021-12-19 01:44:52 +0100
commitc8b6dc489baf21b3945fabfb069be884c53e138a (patch)
tree2042c3d5a075749b16ef31e2b90b8224302373a9 /video/out/vo_gpu_next.c
parente79cd6227b710fe602b9ed6a8e87c095b4a2a933 (diff)
downloadmpv-c8b6dc489baf21b3945fabfb069be884c53e138a.tar.bz2
mpv-c8b6dc489baf21b3945fabfb069be884c53e138a.tar.xz
vo_gpu_next: implement VOCTRL_EXTERNAL_RESIZE
This is only needed on Android and supposed to handle a context resize without reconfiguring the image parameters. reconfig() already does exactly this so plug it in there.
Diffstat (limited to 'video/out/vo_gpu_next.c')
-rw-r--r--video/out/vo_gpu_next.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/video/out/vo_gpu_next.c b/video/out/vo_gpu_next.c
index d6e9cffd1f..6fc0a8c29c 100644
--- a/video/out/vo_gpu_next.c
+++ b/video/out/vo_gpu_next.c
@@ -1040,6 +1040,10 @@ static int control(struct vo *vo, uint32_t request, void *data)
case VOCTRL_SCREENSHOT:
video_screenshot(vo, data);
return true;
+
+ case VOCTRL_EXTERNAL_RESIZE:
+ reconfig(vo, NULL);
+ return true;
}
int events = 0;