Commit 4b26976d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

wl/shm: initial unaccelerated RGB video output

parent 081cba9c
...@@ -420,6 +420,7 @@ $Id$ ...@@ -420,6 +420,7 @@ $Id$
* wingdi: WIN 32 / WIN CE GDI video output * wingdi: WIN 32 / WIN CE GDI video output
* winstore: Windows Store App audio output * winstore: Windows Store App audio output
* wl_shell_surface: Wayland shell surface window provider * wl_shell_surface: Wayland shell surface window provider
* wl_shm: Wayland shared memory video output
* wma_fixed: wma decoder using integer decoder from Rockbox * wma_fixed: wma decoder using integer decoder from Rockbox
* x262: MPEG-2 video encoder using x262 * x262: MPEG-2 video encoder using x262
* x26410b: H264 10 bit video encoder using x264 * x26410b: H264 10 bit video encoder using x264
......
...@@ -129,6 +129,13 @@ endif ...@@ -129,6 +129,13 @@ endif
### Wayland ### ### Wayland ###
libwl_shm_plugin_la_SOURCES = wl/shm.c
libwl_shm_plugin_la_CFLAGS = $(WAYLAND_CLIENT_CFLAGS)
libwl_shm_plugin_la_LIBADD = $(WAYLAND_CLIENT_LIBS)
if HAVE_WAYLAND
vout_LTLIBRARIES += libwl_shm_plugin.la
endif
libwl_shell_surface_plugin_la_SOURCES = wl/shell_surface.c libwl_shell_surface_plugin_la_SOURCES = wl/shell_surface.c
libwl_shell_surface_plugin_la_CFLAGS = $(WAYLAND_CLIENT_CFLAGS) libwl_shell_surface_plugin_la_CFLAGS = $(WAYLAND_CLIENT_CFLAGS)
libwl_shell_surface_plugin_la_LIBADD = $(WAYLAND_CLIENT_LIBS) $(LIBPTHREAD) libwl_shell_surface_plugin_la_LIBADD = $(WAYLAND_CLIENT_LIBS) $(LIBPTHREAD)
......
This diff is collapsed.
...@@ -1177,6 +1177,7 @@ modules/video_output/sdl.c ...@@ -1177,6 +1177,7 @@ modules/video_output/sdl.c
modules/video_output/vdummy.c modules/video_output/vdummy.c
modules/video_output/vmem.c modules/video_output/vmem.c
modules/video_output/wl/shell_surface.c modules/video_output/wl/shell_surface.c
modules/video_output/wl/shm.c
modules/video_output/xcb/glx.c modules/video_output/xcb/glx.c
modules/video_output/xcb/window.c modules/video_output/xcb/window.c
modules/video_output/xcb/x11.c modules/video_output/xcb/x11.c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment