[796/906] move egl into its own directory
authorMatthew Waters <ystreet00@gmail.com>
Wed, 21 Aug 2013 04:05:56 +0000 (14:05 +1000)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 9 Dec 2017 19:31:31 +0000 (19:31 +0000)
gst-libs/gst/gl/Makefile.am
gst-libs/gst/gl/android/gstglwindow_android_egl.h
gst-libs/gst/gl/egl/gstglcontext_egl.c [moved from gst-libs/gst/gl/gstglegl.c with 99% similarity]
gst-libs/gst/gl/egl/gstglcontext_egl.h [moved from gst-libs/gst/gl/gstglegl.h with 100% similarity]
gst-libs/gst/gl/gstglcontext.c
gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.h

index e9d60b8..09cb785 100644 (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
index d4cae36..e206685 100644 (file)
@@ -25,7 +25,6 @@
 #include <EGL/egl.h>
 
 #include <gst/gl/gl.h>
-#include "../gstglegl.h"
 
 G_BEGIN_DECLS
 
similarity index 99%
rename from gst-libs/gst/gl/gstglegl.c
rename to gst-libs/gst/gl/egl/gstglcontext_egl.c
index cb2cf1c..3ef5075 100644 (file)
 #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,
index c8e233d..c2d20a7 100644 (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"
index 32389e7..1cdd5e4 100644 (file)
@@ -28,7 +28,6 @@
 #include <EGL/egl.h>
 
 #include <gst/gl/gl.h>
-#include "../gstglegl.h"
 
 G_BEGIN_DECLS