summaryrefslogtreecommitdiff
path: root/src/video_out/Makefile.am
diff options
context:
space:
mode:
authorMatthias Hopf <mat@mshopf.de>2002-01-22 20:15:00 +0000
committerMatthias Hopf <mat@mshopf.de>2002-01-22 20:15:00 +0000
commit96e51ba1357d376b58aff55b656aa5c67f4242c9 (patch)
tree730dcfb0ea915076a9443cf13d5abc37598f60e1 /src/video_out/Makefile.am
parent0231ba5d2e9a8d3581287bef411ea0b5e82c317f (diff)
downloadxine-lib-96e51ba1357d376b58aff55b656aa5c67f4242c9.tar.gz
xine-lib-96e51ba1357d376b58aff55b656aa5c67f4242c9.tar.bz2
New OpenGL output plugin. Will only work with upcoming changes in xine-ui.
EXPERIMENTAL. Read README.opengl in xine-ui. CVS patchset: 1439 CVS date: 2002/01/22 20:15:00
Diffstat (limited to 'src/video_out/Makefile.am')
-rw-r--r--src/video_out/Makefile.am10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am
index 978203c27..ee6844f17 100644
--- a/src/video_out/Makefile.am
+++ b/src/video_out/Makefile.am
@@ -11,6 +11,9 @@ syncfb_module = xineplug_vo_out_syncfb.la
if HAVE_XV
xv_module = xineplug_vo_out_xv.la
endif
+if HAVE_OPENGL
+opengl_module = xineplug_vo_out_opengl.la
+endif
endif
if HAVE_AA
@@ -33,7 +36,7 @@ endif
# scheme "xineplug_vo_out_"
#
lib_LTLIBRARIES = $(xv_module) $(syncfb_module) $(xshm_module) $(aa_module) \
- $(fb_module) $(sdl_module)
+ $(fb_module) $(sdl_module) $(opengl_module)
xineplug_vo_out_xv_la_SOURCES = deinterlace.c alphablend.c video_out_xv.c
xineplug_vo_out_xv_la_LIBADD = $(XV_LIB) $(X_LIBS) -lXext
@@ -44,6 +47,11 @@ xineplug_vo_out_xshm_la_SOURCES = yuv2rgb.c yuv2rgb_mmx.c yuv2rgb_mlib.c \
xineplug_vo_out_xshm_la_LIBADD = $(X_LIBS) -lXext
xineplug_vo_out_xshm_la_LDFLAGS = -avoid-version -module
+xineplug_vo_out_opengl_la_SOURCES = yuv2rgb.c yuv2rgb_mmx.c yuv2rgb_mlib.c \
+ alphablend.c video_out_opengl.c
+xineplug_vo_out_opengl_la_LIBADD = $(OPENGL_LIBS) $(X_LIBS)
+xineplug_vo_out_opengl_la_LDFLAGS = -avoid-version -module
+
xineplug_vo_out_syncfb_la_SOURCES = alphablend.c video_out_syncfb.c
xineplug_vo_out_syncfb_la_LDFLAGS = -avoid-version -module