[vlc-commits] [Git][videolan/vlc][master] 2 commits: osx: enable OpenGL vout display
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Sat Jun 11 23:02:08 UTC 2022
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
f547c537 by Pierre Lamot at 2022-06-11T19:26:42+00:00
osx: enable OpenGL vout display
This module is required to use libvlc opengl bindings
- - - - -
64f143f5 by Pierre Lamot at 2022-06-11T19:26:42+00:00
macosx vouts: Adjust module priorities
prioritize the macosx vout over the generic opengl (270), but less than
caopengllayer (300)
- - - - -
2 changed files:
- modules/video_output/macosx.m
- modules/video_output/opengl/Makefile.am
Changes:
=====================================
modules/video_output/macosx.m
=====================================
@@ -75,7 +75,7 @@ vlc_module_begin ()
set_shortname ("Mac OS X")
set_description (N_("Mac OS X OpenGL video output"))
set_subcategory (SUBCAT_VIDEO_VOUT)
- set_callback_display(Open, 250)
+ set_callback_display(Open, 290)
add_shortcut ("macosx", "vout_macosx")
add_glopts ()
=====================================
modules/video_output/opengl/Makefile.am
=====================================
@@ -77,6 +77,10 @@ if HAVE_GL
vout_LTLIBRARIES += libgl_plugin.la
endif # HAVE_GL
+if HAVE_OSX
+vout_LTLIBRARIES += libgl_plugin.la
+endif
+
libglfilter_draw_plugin_la_SOURCES = video_output/opengl/filter_draw.c
libglfilter_draw_plugin_la_LDFLAGS = $(AM_LDFLAGS)
if HAVE_GL
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/a8ec494dcb74b90ebfd7f0931477ce85c8d9871b...64f143f5bab7102dd7036c211cc4ca68cfa820f3
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/a8ec494dcb74b90ebfd7f0931477ce85c8d9871b...64f143f5bab7102dd7036c211cc4ca68cfa820f3
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list