mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
meson: detect opengl api from -base .pc files correctly
There was a mismatch between the .pc files generated by autotools and by meson that would lead to meson not detecting that opengl api is available even though it is, if -base was built with autotools. The mismatch has now been rectified in -base, so we need to update for that. This is mostly for consistency, this problem didn't seem to affect anything in -good. See https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/issues/871
This commit is contained in:
parent
64a991d7b8
commit
8ed603958d
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ if build_gstgl
|
|||
set_variable('gst_gl_have_platform_@0@'.format(p), gst_gl_platforms.contains(p))
|
||||
endforeach
|
||||
|
||||
foreach api : ['opengl', 'gles2']
|
||||
foreach api : ['gl', 'gles2']
|
||||
set_variable('gst_gl_have_api_@0@'.format(api), gst_gl_apis.contains(api))
|
||||
endforeach
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue