mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
28eec07001
Original commit message from CVS: * sys/glsink/Makefile.am: * sys/glsink/gltestsrc.c: * sys/glsink/gltestsrc.h: * sys/glsink/gstgldisplay.c: * sys/glsink/gstgldownload.c: * sys/glsink/gstglfilter.c: * sys/glsink/gstgltestsrc.c: * sys/glsink/gstgltestsrc.h: * sys/glsink/gstglupload.c: * sys/glsink/gstopengl.c: Add gltestsrc element, a duplicate of videotestsrc that uses GL rendering to create images. More cleanup.
28 lines
694 B
Makefile
28 lines
694 B
Makefile
|
|
plugin_LTLIBRARIES = libgstglimagesink.la
|
|
|
|
libgstglimagesink_la_SOURCES = \
|
|
glimagesink.c \
|
|
gstgldisplay.c \
|
|
gstopengl.c \
|
|
glextensions.c \
|
|
gstglbuffer.c \
|
|
gstglupload.c \
|
|
gstgldownload.c \
|
|
gstgltestsrc.c \
|
|
gltestsrc.c \
|
|
gstglfilter.c
|
|
libgstglimagesink_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstglimagesink_la_LIBADD = $(X_LIBS) $(XSHM_LIBS) -lGL \
|
|
$(GST_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-$(GST_MAJORMINOR)
|
|
libgstglimagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
glimagesink.h \
|
|
gstgldisplay.h \
|
|
glextensions.h \
|
|
gstgltestsrc.h \
|
|
gltestsrc.h \
|
|
gstglbuffer.h
|