diff options
author | Mathias Hasselmann <mathias@pergamaunz.(none)> | 2007-03-13 23:38:20 +0100 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2007-04-08 21:10:12 -0400 |
commit | 0e7df34e07d7816b29c1ac1f67608b87c5e0efc2 (patch) | |
tree | 2cc4832f61bb1cea40d813a9fa9f2b32e06643de /src/cairo-clip-private.h | |
parent | ced7b4a4ab4b5a8d639bfca0dd5db38f1ae4825d (diff) |
Make region of cairo_clip_t static
Diffstat (limited to 'src/cairo-clip-private.h')
-rw-r--r-- | src/cairo-clip-private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cairo-clip-private.h b/src/cairo-clip-private.h index d2811d5df..a2e8d9bc6 100644 --- a/src/cairo-clip-private.h +++ b/src/cairo-clip-private.h @@ -72,7 +72,8 @@ struct _cairo_clip { /* * A clip region that can be placed in the surface */ - pixman_region16_t *region; + pixman_region16_t region; + cairo_bool_t has_region; /* * If the surface supports path clipping, we store the list of * clipping paths that has been set here as a linked list. |