mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
[376/906] build: support openGLES on linux via autofoo. Partialy fixes #593786
Add a pkg-config check for opengl and if not found assume opengl-es. If user has none of both one still get build error later on (there is no pkg-config for opengl-es). Add more files to EXTRA dist and build the opengles variant if selected. Simmilar changes could be done for the winCE backend.
This commit is contained in:
parent
a86d07acca
commit
1cb459d4d5
2 changed files with 21 additions and 10 deletions
|
@ -3,7 +3,9 @@ lib_LTLIBRARIES = libgstgl-@GST_MAJORMINOR@.la
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
gstglwindow_x11.c \
|
gstglwindow_x11.c \
|
||||||
|
gstglwindow_x11ES2.c \
|
||||||
gstglwindow_win32.c \
|
gstglwindow_win32.c \
|
||||||
|
gstglwindow_winCE.c \
|
||||||
gstglwindow_cocoa.m
|
gstglwindow_cocoa.m
|
||||||
|
|
||||||
libgstgl_@GST_MAJORMINOR@_la_SOURCES = \
|
libgstgl_@GST_MAJORMINOR@_la_SOURCES = \
|
||||||
|
@ -21,6 +23,9 @@ endif
|
||||||
if GL_BACKEND_X11
|
if GL_BACKEND_X11
|
||||||
libgstgl_@GST_MAJORMINOR@_la_SOURCES += gstglwindow_x11.c
|
libgstgl_@GST_MAJORMINOR@_la_SOURCES += gstglwindow_x11.c
|
||||||
endif
|
endif
|
||||||
|
if GL_BACKEND_X11ES2
|
||||||
|
libgstgl_@GST_MAJORMINOR@_la_SOURCES += gstglwindow_x11ES2.c
|
||||||
|
endif
|
||||||
|
|
||||||
libgstgl_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/gl
|
libgstgl_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/gl
|
||||||
libgstgl_@GST_MAJORMINOR@include_HEADERS = \
|
libgstgl_@GST_MAJORMINOR@include_HEADERS = \
|
||||||
|
|
|
@ -4,22 +4,15 @@ plugin_LTLIBRARIES = libgstopengl.la
|
||||||
AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
AM_LIBS = $(GST_BASE_LIBS)
|
AM_LIBS = $(GST_BASE_LIBS)
|
||||||
|
|
||||||
libgstopengl_la_SOURCES = \
|
# full opengl required
|
||||||
gstopengl.c \
|
if GL_IS_OPENGL
|
||||||
gstglimagesink.c \
|
OPENGL_SOURCES = \
|
||||||
gstglimagesink.h \
|
|
||||||
gstglupload.c \
|
|
||||||
gstglupload.h \
|
|
||||||
gstglbumper.c \
|
gstglbumper.c \
|
||||||
gstglbumper.h \
|
gstglbumper.h \
|
||||||
gstgldownload.c \
|
|
||||||
gstgldownload.h \
|
|
||||||
gstglfilterblur.c \
|
gstglfilterblur.c \
|
||||||
gstglfilterblur.h \
|
gstglfilterblur.h \
|
||||||
gstglfiltersobel.c \
|
gstglfiltersobel.c \
|
||||||
gstglfiltersobel.h \
|
gstglfiltersobel.h \
|
||||||
gstglfiltercube.c \
|
|
||||||
gstglfiltercube.h \
|
|
||||||
gstglfilterlaplacian.c \
|
gstglfilterlaplacian.c \
|
||||||
gstglfilterlaplacian.h \
|
gstglfilterlaplacian.h \
|
||||||
gstglfilterglass.c \
|
gstglfilterglass.c \
|
||||||
|
@ -58,6 +51,19 @@ libgstopengl_la_SOURCES = \
|
||||||
effects/gstgleffectsin.c \
|
effects/gstgleffectsin.c \
|
||||||
effects/gstgleffectglow.c \
|
effects/gstgleffectglow.c \
|
||||||
effects/gstgleffectxray.c
|
effects/gstgleffectxray.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
libgstopengl_la_SOURCES = \
|
||||||
|
gstopengl.c \
|
||||||
|
gstglimagesink.c \
|
||||||
|
gstglimagesink.h \
|
||||||
|
gstglupload.c \
|
||||||
|
gstglupload.h \
|
||||||
|
gstgldownload.c \
|
||||||
|
gstgldownload.h \
|
||||||
|
gstglfiltercube.c \
|
||||||
|
gstglfiltercube.h \
|
||||||
|
$(OPENGL_SOURCES)
|
||||||
|
|
||||||
# check order of CFLAGS and LIBS, shouldn't the order be the other way around
|
# check order of CFLAGS and LIBS, shouldn't the order be the other way around
|
||||||
# (like in AM_CFLAGS)?
|
# (like in AM_CFLAGS)?
|
||||||
|
|
Loading…
Reference in a new issue