diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/cairo_canvas.h | 2 | ||||
-rw-r--r-- | common/canvas_base.c | 2 | ||||
-rw-r--r-- | common/canvas_base.h | 2 | ||||
-rw-r--r-- | common/gdi_canvas.h | 2 | ||||
-rw-r--r-- | common/gl_canvas.h | 2 | ||||
-rw-r--r-- | common/lz.h | 2 | ||||
-rw-r--r-- | common/rect.h | 2 | ||||
-rw-r--r-- | common/region.h | 2 | ||||
-rw-r--r-- | common/rop3.h | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/common/cairo_canvas.h b/common/cairo_canvas.h index da4d229e..72abcb21 100644 --- a/common/cairo_canvas.h +++ b/common/cairo_canvas.h @@ -20,7 +20,7 @@ #include <stdint.h> -#include "draw.h" +#include <spice/draw.h> #include "cairo.h" #include "canvas_base.h" #include "region.h" diff --git a/common/canvas_base.c b/common/canvas_base.c index e4055933..fe9ef9b7 100644 --- a/common/canvas_base.c +++ b/common/canvas_base.c @@ -21,7 +21,7 @@ #include <setjmp.h> #include <stdio.h> -#include "draw.h" +#include <spice/draw.h> #include "quic.h" #include "lz.h" #include "canvas_base.h" diff --git a/common/canvas_base.h b/common/canvas_base.h index 8a574e2a..ad73bb9a 100644 --- a/common/canvas_base.h +++ b/common/canvas_base.h @@ -21,7 +21,7 @@ #include "cairo.h" #include "lz.h" -#include "draw.h" +#include <spice/draw.h> #if defined(CAIRO_CANVAS_CACHE) || defined(CAIRO_CANVAS_IMAGE_CACHE) typedef void (*bits_cache_put_fn_t)(void *bits_cache_opaque, uint64_t id, cairo_surface_t *surface); diff --git a/common/gdi_canvas.h b/common/gdi_canvas.h index 0f518508..8ba3f202 100644 --- a/common/gdi_canvas.h +++ b/common/gdi_canvas.h @@ -20,7 +20,7 @@ #include <stdint.h> -#include "draw.h" +#include <spice/draw.h> #include "cairo.h" #include "canvas_base.h" #include "region.h" diff --git a/common/gl_canvas.h b/common/gl_canvas.h index 177c99d0..442c9f4e 100644 --- a/common/gl_canvas.h +++ b/common/gl_canvas.h @@ -16,7 +16,7 @@ */ #include "glc.h" -#include "draw.h" +#include <spice/draw.h> #include "canvas_base.h" #include "region.h" diff --git a/common/lz.h b/common/lz.h index 3fe1b4c8..0444dc83 100644 --- a/common/lz.h +++ b/common/lz.h @@ -7,7 +7,7 @@ #include "lz_common.h" #include "lz_config.h" -#include "draw.h" +#include <spice/draw.h> typedef void *LzContext; diff --git a/common/rect.h b/common/rect.h index d109cc97..61de99c2 100644 --- a/common/rect.h +++ b/common/rect.h @@ -18,7 +18,7 @@ #ifndef _H_RECT #define _H_RECT -#include "draw.h" +#include <spice/draw.h> #define MIN(x, y) (((x) <= (y)) ? (x) : (y)) #define MAX(x, y) (((x) >= (y)) ? (x) : (y)) diff --git a/common/region.h b/common/region.h index 73f8ed9d..e685bfba 100644 --- a/common/region.h +++ b/common/region.h @@ -19,7 +19,7 @@ #define _H_REGION #include <stdint.h> -#include "draw.h" +#include <spice/draw.h> #define REGION_USE_IMPROVED diff --git a/common/rop3.h b/common/rop3.h index 31cbcdaa..3a24ece2 100644 --- a/common/rop3.h +++ b/common/rop3.h @@ -20,7 +20,7 @@ #include <stdint.h> -#include "draw.h" +#include <spice/draw.h> #include "cairo.h" void do_rop3_with_pattern(uint8_t rop3, cairo_surface_t *d, cairo_surface_t *s, SpicePoint *src_pos, |