gltransform: Fix includes of graphene headers
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Wed, 18 Feb 2015 22:10:48 +0000 (17:10 -0500)
committerNicolas Dufresne <nicolas.dufresne@collabora.com>
Wed, 18 Feb 2015 22:15:01 +0000 (17:15 -0500)
The graphene-1.0 part should not be in the source code. This directory
is part of the cflags include. This is similar to gstreamer-1.0/
directory. This break compilation if the include directory where
graphene is installed is not in your include path.

ext/gl/gstgltransformation.c
ext/gl/gstgltransformation.h

index 6bc16b344fd792b375d16fb6a7cf560d8d3e106a..e7596f8c7ab2939d26d50afe32188858bfb25363 100644 (file)
 #include "config.h"
 #endif
 
-#include <gst/gl/gstglapi.h>
 #include "gstgltransformation.h"
-#include <graphene-1.0/graphene-gobject.h>
+
+#include <gst/gl/gstglapi.h>
+#include <graphene-gobject.h>
 
 #define GST_CAT_DEFAULT gst_gl_transformation_debug
 GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
index e8a5ce606617f3905ad2d4e1a4def1bab037518b..5b020146e93f6fd5d4a2c6c74445aaf736b350c9 100644 (file)
@@ -22,7 +22,7 @@
 #define _GST_GL_TRANSFORMATION_H_
 
 #include <gst/gl/gstglfilter.h>
-#include <graphene-1.0/graphene.h>
+#include <graphene.h>
 
 G_BEGIN_DECLS