Skip to content

Commit

Permalink
meson: fix condition for enabling vaapi-egl
Browse files Browse the repository at this point in the history
  • Loading branch information
ioraff authored and philipl committed Aug 27, 2022
1 parent 89cab5c commit 1a32bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit 1a32bd3

Please sign in to comment.