mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
[796/906] move egl into its own directory
This commit is contained in:
parent
83ac943fc4
commit
b8b9fced19
6 changed files with 6 additions and 8 deletions
|
@ -56,8 +56,8 @@ libgstgl_@GST_API_VERSION@_la_LIBADD += android/libgstgl-android.la
|
|||
endif
|
||||
|
||||
if USE_EGL
|
||||
libgstgl_@GST_API_VERSION@_la_SOURCES += gstglegl.c
|
||||
noinst_HEADERS += gstglegl.h
|
||||
libgstgl_@GST_API_VERSION@_la_SOURCES += egl/gstglcontext_egl.c
|
||||
noinst_HEADERS += egl/gstglcontext_egl.h
|
||||
endif
|
||||
|
||||
libgstgl_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/gl
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include <EGL/egl.h>
|
||||
|
||||
#include <gst/gl/gl.h>
|
||||
#include "../gstglegl.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
|
|
@ -22,14 +22,14 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "gstglegl.h"
|
||||
#include "gstglcontext_egl.h"
|
||||
#include <gst/gl/gl.h>
|
||||
|
||||
#if GST_GL_HAVE_WINDOW_X11
|
||||
#include "x11/gstglwindow_x11.h"
|
||||
#include "../x11/gstglwindow_x11.h"
|
||||
#endif
|
||||
#if GST_GL_HAVE_WINDOW_WIN32
|
||||
#include "win32/gstglwindow_win32.h"
|
||||
#include "../win32/gstglwindow_win32.h"
|
||||
#endif
|
||||
|
||||
static gboolean gst_gl_context_egl_create_context (GstGLContext * context,
|
|
@ -31,7 +31,7 @@
|
|||
#include "x11/gstglcontext_glx.h"
|
||||
#endif
|
||||
#if GST_GL_HAVE_PLATFORM_EGL
|
||||
#include "gstglegl.h"
|
||||
#include "egl/gstglcontext_egl.h"
|
||||
#endif
|
||||
#if GST_GL_HAVE_PLATFORM_COCOA
|
||||
#include "cocoa/gstglcontext_cocoa.h"
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
#include <EGL/egl.h>
|
||||
|
||||
#include <gst/gl/gl.h>
|
||||
#include "../gstglegl.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
|
Loading…
Reference in a new issue