From 4ea15b1b3fcdcb4590a7a668279e068f2e824c08 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Wed, 18 Feb 2015 17:10:48 -0500 Subject: [PATCH] gltransform: Fix includes of graphene headers 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 | 5 +++-- ext/gl/gstgltransformation.h | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ext/gl/gstgltransformation.c b/ext/gl/gstgltransformation.c index 6bc16b344f..e7596f8c7a 100644 --- a/ext/gl/gstgltransformation.c +++ b/ext/gl/gstgltransformation.c @@ -44,9 +44,10 @@ #include "config.h" #endif -#include #include "gstgltransformation.h" -#include + +#include +#include #define GST_CAT_DEFAULT gst_gl_transformation_debug GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT); diff --git a/ext/gl/gstgltransformation.h b/ext/gl/gstgltransformation.h index e8a5ce6066..5b020146e9 100644 --- a/ext/gl/gstgltransformation.h +++ b/ext/gl/gstgltransformation.h @@ -22,7 +22,7 @@ #define _GST_GL_TRANSFORMATION_H_ #include -#include +#include G_BEGIN_DECLS