mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
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.
This commit is contained in:
parent
3f32b45769
commit
345f1dfb64
2 changed files with 4 additions and 3 deletions
|
@ -44,9 +44,10 @@
|
|||
#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);
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue