diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-07-14 18:35:32 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-07-15 11:05:19 +0100 |
commit | 2458120dee350cd1b49f999f64b17a895a4b6607 (patch) | |
tree | 10a92999cc28b8041bc4958aa422e8d1dabb6242 /src/cairo-scaled-font.c | |
parent | 83bfd85a1378e61b8bdc3f554f5e07900311f61f (diff) |
pattern: Add observer hooks
In order for custom context to automatically track when a pattern is
modify after being set on the context (and before it is used in an
operator), we need for there to be a callback when the pattern is
modified.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/cairo-scaled-font.c')
-rw-r--r-- | src/cairo-scaled-font.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cairo-scaled-font.c b/src/cairo-scaled-font.c index 3f37e1c44..c6c599b9f 100644 --- a/src/cairo-scaled-font.c +++ b/src/cairo-scaled-font.c @@ -40,6 +40,7 @@ #include "cairoint.h" #include "cairo-error-private.h" +#include "cairo-pattern-private.h" #include "cairo-scaled-font-private.h" #if _XOPEN_SOURCE >= 600 || defined (_ISOC99_SOURCE) |