summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2018-03-28 11:23:43 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2018-03-28 22:05:17 +0800
commitdfb06e1c7ad8671ecc5c758836ec9c0ddf947a24 (patch)
tree45b80d4ed3fcaa373930626994c019ddb8754db1
parent139a627a85c07c4f838681f73e95ec86da3d7ecd (diff)
downloadgtk+-dfb06e1c7ad8671ecc5c758836ec9c0ddf947a24.tar.gz
gsk/gl: Include cairo.h consistently
Follow the other sources that include cairo.h, by just doing #include <cairo.h>, not <cairo/cairo.h>. https://bugzilla.gnome.org/show_bug.cgi?id=773299
-rw-r--r--gsk/gl/gskglglyphcache.c2
-rw-r--r--gsk/gl/gskglimageprivate.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/gsk/gl/gskglglyphcache.c b/gsk/gl/gskglglyphcache.c
index e1d9ffd50b..842a899427 100644
--- a/gsk/gl/gskglglyphcache.c
+++ b/gsk/gl/gskglglyphcache.c
@@ -6,7 +6,7 @@
#include "gskprivate.h"
#include <graphene.h>
-#include <cairo/cairo.h>
+#include <cairo.h>
#include <epoxy/gl.h>
/* Parameters for our cache eviction strategy.
diff --git a/gsk/gl/gskglimageprivate.h b/gsk/gl/gskglimageprivate.h
index 5a58fea5c9..547f0cb171 100644
--- a/gsk/gl/gskglimageprivate.h
+++ b/gsk/gl/gskglimageprivate.h
@@ -2,7 +2,7 @@
#define __GSK_GL_IMAGE_H__
#include "gskgldriverprivate.h"
-#include <cairo/cairo.h>
+#include <cairo.h>
typedef struct
{