1eca1631a7
CoglGst is a GStreamer integration library that facilitates video playback using the Cogl API. It works by retrieving each video frame from the GStreamer pipeline and attaching it to a Cogl pipeline in the form of a Cogl texture along with possible color model conversion shaders. The pipeline is then retrieved by the user during each draw. An example use of the CoglGst API is included in the examples directory. Reviewed-by: Neil Roberts <neil@linux.intel.com> (cherry picked from commit dfb94cf4b0b6b42d6465df362a0c0af780596890)
43 lines
771 B
Makefile
43 lines
771 B
Makefile
SUBDIRS = deps test-fixtures cogl tests
|
|
|
|
if BUILD_COGL_PANGO
|
|
SUBDIRS += cogl-pango
|
|
endif
|
|
|
|
if BUILD_COGL_GLES2
|
|
SUBDIRS += cogl-gles2
|
|
endif
|
|
|
|
if BUILD_COGL_GST
|
|
SUBDIRS += cogl-gst
|
|
endif
|
|
|
|
SUBDIRS += examples doc po build
|
|
|
|
ACLOCAL_AMFLAGS = -I build/autotools ${ACLOCAL_FLAGS}
|
|
|
|
EXTRA_DIST = \
|
|
README.in \
|
|
config-custom.h \
|
|
config.h.win32 \
|
|
config.h.win32.in
|
|
|
|
# .changelog expects these to be initializes
|
|
CLEANFILES=
|
|
DISTCLEANFILES=
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--enable-gtk-doc \
|
|
--enable-maintainer-flags \
|
|
--enable-profile \
|
|
--enable-gles1 \
|
|
--enable-gles2 \
|
|
--enable-gl \
|
|
--enable-xlib-egl-platform \
|
|
--enable-wayland-egl-platform \
|
|
--enable-glx \
|
|
--enable-wayland-egl-server \
|
|
--enable-cogl-gst
|
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.release
|