Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-12-23 22:23:42 +0300
committerJayson Reis <santosdosreis@gmail.com>2023-06-22 08:43:57 +0300
commitdcb80ac105ca3c61505ba909865f7210bdc10b1f (patch)
tree6f07210f94f9da26c8b3791b738330ac1007ba98 /meson.build
parent2be14b95b306cf23bd52a192106c17108d573a03 (diff)
gtk4: Add support for GL on Windows
This implements all the workarounds for Windows-specific complications that the GTK GStreamer mediafile implementation also does. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1255>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index c9a6f8d1a..3d5a72093 100644
--- a/meson.build
+++ b/meson.build
@@ -262,6 +262,10 @@ if get_option('gtk4').allowed()
if 'glx' in gl_platforms
gtk4_features += 'x11glx'
endif
+ elif host_system == 'windows'
+ if 'egl' in gl_platforms
+ gtk4_features += 'winegl'
+ endif
endif
plugins += {'gtk4': {
'library': 'libgstgtk4',