[796/906] move egl into its own directory

This commit is contained in:
Matthew Waters 2013-08-21 14:05:56 +10:00
parent f7d4776c7d
commit 32f40b28a5
6 changed files with 6 additions and 8 deletions

View file

@ -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

View file

@ -25,7 +25,6 @@
#include <EGL/egl.h>
#include <gst/gl/gl.h>
#include "../gstglegl.h"
G_BEGIN_DECLS

View file

@ -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,

View file

@ -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"

View file

@ -28,7 +28,6 @@
#include <EGL/egl.h>
#include <gst/gl/gl.h>
#include "../gstglegl.h"
G_BEGIN_DECLS