mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-15 11:55:32 +00:00
1fab43e619
Original commit message from CVS: * sys/glsink/Makefile.am: * sys/glsink/glextensions.c: * sys/glsink/glextensions.h: * sys/glsink/glvideo.c: Add vblank synchronization. Isn't really working on my driver. :(
21 lines
573 B
Makefile
21 lines
573 B
Makefile
|
|
plugin_LTLIBRARIES = libgstglimagesink.la
|
|
|
|
libgstglimagesink_la_SOURCES = \
|
|
glimagesink.c \
|
|
glvideo.c \
|
|
gstopengl.c \
|
|
gstvideo-common.c \
|
|
glextensions.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 \
|
|
gstvideo-common.h \
|
|
glvideo.h \
|
|
glextensions.h
|