From a7ba1428e0b3ec62935e3f570cc730cca6e1f2cf Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Thu, 9 Mar 2023 00:25:51 +0530 Subject: [PATCH] meson: Install viv-fb GL headers, needed by i.MX Needed by qmlglsink at build time to allocate a viv-fb display. Without this, the GL fastpath doesn't work, and performance is really bad. Part-of: --- subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build b/subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build index 1080b5dff4..5fc775dae9 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build +++ b/subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build @@ -929,6 +929,11 @@ if need_platform_egl != 'no' and need_win_viv_fb != 'no' 'viv-fb/gstglwindow_viv_fb_egl.c', ] gl_cpp_args += ['-DEGL_API_FB'] + gl_viv_fb_headers = [ + 'viv-fb/gstgldisplay_viv_fb.h', + 'viv-fb/gstglwindow_viv_fb_egl.h', + ] + install_headers(gl_viv_fb_headers, subdir : 'gstreamer-1.0/gst/gl/viv-fb') endif endif endif