[vlc-devel] commit: Fix option glx-shm does not exist error ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Jul 6 15:31:52 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sun Jul 6 16:33:57 2008 +0300| [c8759b8d6ca419b3bc6f157da5eae0093a145435]
Fix option glx-shm does not exist error
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c8759b8d6ca419b3bc6f157da5eae0093a145435
---
modules/video_output/x11/glx.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/modules/video_output/x11/glx.c b/modules/video_output/x11/glx.c
index fe5d122..f151a64 100644
--- a/modules/video_output/x11/glx.c
+++ b/modules/video_output/x11/glx.c
@@ -106,6 +106,10 @@ static void SwitchContext( vout_thread_t * );
"X11 hardware display to use. By default VLC will " \
"use the value of the DISPLAY environment variable.")
+#define SHM_TEXT N_("Use shared memory")
+#define SHM_LONGTEXT N_( \
+ "Use shared memory to communicate between VLC and the X server.")
+
#define SCREEN_TEXT N_("Screen for fullscreen mode.")
#define SCREEN_LONGTEXT N_( \
"Screen to use in fullscreen mode. For instance " \
@@ -122,6 +126,9 @@ vlc_module_begin();
add_string( "glx-display", NULL, NULL, DISPLAY_TEXT, DISPLAY_LONGTEXT, true );
add_integer( "glx-adaptor", -1, NULL, ADAPTOR_TEXT, ADAPTOR_LONGTEXT, true );
add_bool( "glx-altfullscreen", 0, NULL, ALT_FS_TEXT, ALT_FS_LONGTEXT, true );
+#ifdef HAVE_SYS_SHM_H
+ add_bool( "glx-shm", 1, NULL, SHM_TEXT, SHM_LONGTEXT, true );
+#endif
#ifdef HAVE_XINERAMA
add_integer ( "glx-xineramascreen", 0, NULL, SCREEN_TEXT, SCREEN_LONGTEXT, true );
#endif
More information about the vlc-devel
mailing list