summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2022-02-22 20:04:31 +0100
committerNiklas Haas <github-daiK1o@haasn.dev>2022-02-25 22:13:20 +0100
commitb1fb4b783bd604ffb763e88a7cee2ad9d9c2c209 (patch)
treece29f237690592dc547ddba21af3476b4ded5bf2 /wscript
parent626fa506d5237cd178e3fb5dbd524e73ad449ee8 (diff)
downloadmpv-b1fb4b783bd604ffb763e88a7cee2ad9d9c2c209.tar.bz2
mpv-b1fb4b783bd604ffb763e88a7cee2ad9d9c2c209.tar.xz
vo_gpu_next: remove/simplify plane flipping hacks
libplacebo v198 fixed this properly by adding the ability to flip planes directly, which is done automatically by the swapchain helpers. As such, we no longer need to concern ourselves with hacky logic to flip planes using the crop. This also removes the need for the OSD coordinate hack on OpenGL.
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index a3152aa3b0..3b8653097e 100644
--- a/wscript
+++ b/wscript
@@ -741,9 +741,9 @@ video_output_features = [
'func': check_pkg_config('libplacebo >= 4.157.0'),
}, {
'name': 'libplacebo-next',
- 'desc': 'libplacebo v4.197+, needed for vo_gpu_next',
+ 'desc': 'libplacebo v4.199+, needed for vo_gpu_next',
'deps': 'libplacebo',
- 'func': check_preprocessor('libplacebo/config.h', 'PL_API_VER >= 197',
+ 'func': check_preprocessor('libplacebo/config.h', 'PL_API_VER >= 199',
use='libplacebo'),
}, {
'name': '--vulkan',