Skip to content
Snippets Groups Projects
Commit c0308a8c authored by Alaric Senat's avatar Alaric Senat Committed by François Cartegnie
Browse files

wasm: gl: disable egl_pbuffer for emscripten

Emscripten does not provide `eglCreatePbufferSurface` and the module is
built for every EGL supporting platforms since
75b62f44.
This was not failing on the CI as we don't link for now. Only the symbol
is missing from the implementation.
parent 9cf4d39b
No related branches found
No related tags found
1 merge request!5106wasm: gl: disable egl_pbuffer for emscripten
Pipeline #451113 failed with stages
in 28 minutes and 11 seconds
......@@ -221,6 +221,7 @@ libegl_pbuffer_filter_plugin_la_SOURCES = video_filter/egl_pbuffer.c \
libegl_pbuffer_filter_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) $(EGL_FLAGS)
libegl_pbuffer_filter_plugin_la_LIBADD = $(EGL_LIBS)
if !HAVE_EMSCRIPTEN
if HAVE_EGL
if HAVE_GL
libegl_pbuffer_filter_plugin_la_LIBADD += libvlc_opengl.la $(GL_LIBS)
......@@ -233,6 +234,7 @@ vout_LTLIBRARIES += libegl_pbuffer_filter_plugin.la
endif
endif
endif
endif
libegl_surfacetexture_plugin_la_SOURCES = video_filter/egl_surfacetexture.c
libegl_surfacetexture_plugin_la_CFLAGS = $(AM_CFLAGS) $(EGL_CFLAGS) -DUSE_OPENGL_ES2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment