summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOwen Rafferty <owen@owenrafferty.com>2022-08-27 12:25:31 -0500
committerPhilip Langdale <github.philipl@overt.org>2022-08-27 10:53:05 -0700
commit1a32bd37e00fa9cf33d56590e42520e038cb512f (patch)
treed9dc6c18edb406d937e881269d05ba32f4bcb18e
parent89cab5c32f1cf478dde739950d2d749c08d623ce (diff)
downloadmpv-1a32bd37e00fa9cf33d56590e42520e038cb512f.tar.bz2
mpv-1a32bd37e00fa9cf33d56590e42520e038cb512f.tar.xz
meson: fix condition for enabling vaapi-egl
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 8554573bfa..e710dc87b0 100644
--- a/meson.build
+++ b/meson.build
@@ -1376,7 +1376,7 @@ if features['vaapi-x11']
endif
features += {'vaapi-x-egl': features['vaapi-x11'] and egl_x11.allowed()}
-features += {'vaapi-egl': features['vaapi-x11'] or features['vaapi-wayland'] or features['drm']}
+features += {'vaapi-egl': features['vaapi-x11'] or features['vaapi-wayland'] or features['vaapi-drm']}
features += {'vaapi-libplacebo': features['vaapi'] and libplacebo.found()}
if features['vaapi-egl'] or features['vaapi-libplacebo']