mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-03-11 01:20:35 +01:00
gl: Fix #include's to pass 'make check'
'make check' complains that: Checking that private header files #include "some cairo header" first (or none) cairo-gl-dispatch-private.h:#include <stddef.h> Checking that source files #include "cairoint.h" first (or none) cairo-gl-dispatch.c:#include "cairo-gl-private.h" cairo-gl-info.c:#include "cairo-gl-private.h"
This commit is contained in:
parent
10e58a4a16
commit
4e3eb5e8ed
3 changed files with 3 additions and 1 deletions
|
|
@ -32,8 +32,8 @@
|
|||
#ifndef CAIRO_GL_DISPATCH_PRIVATE_H
|
||||
#define CAIRO_GL_DISPATCH_PRIVATE_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include "cairo-gl-private.h"
|
||||
#include <stddef.h>
|
||||
|
||||
typedef struct _cairo_gl_dispatch_entry {
|
||||
const char *name_core;
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
* Alexandros Frantzis <alexandros.frantzis@linaro.org>
|
||||
*/
|
||||
|
||||
#include "cairoint.h"
|
||||
#include "cairo-gl-private.h"
|
||||
#include "cairo-gl-dispatch-private.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
* Alexandros Frantzis <alexandros.frantzis@linaro.org>
|
||||
*/
|
||||
|
||||
#include "cairoint.h"
|
||||
#include "cairo-gl-private.h"
|
||||
|
||||
int
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue