diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-04-23 19:45:26 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-07-15 11:05:19 +0100 |
commit | 83bfd85a1378e61b8bdc3f554f5e07900311f61f (patch) | |
tree | 380f96e0021d420799db02f4abe3e364745ec476 /src/cairo-xml-surface.c | |
parent | 2055732ffcd6316c3feb05ac330fbaf8698df5c4 (diff) |
Implement cairo_backend_t
Allow a backend to completely reimplement the Cairo API as it wants. The
goal is to pass operations to the native backends such as Quartz,
Direct2D, Qt, Skia, OpenVG with no overhead. And to permit complete
logging contexts, and whatever else the imagination holds. Perhaps to
experiment with double-paths?
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/cairo-xml-surface.c')
-rw-r--r-- | src/cairo-xml-surface.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cairo-xml-surface.c b/src/cairo-xml-surface.c index 83d4f912..cf99ee6c 100644 --- a/src/cairo-xml-surface.c +++ b/src/cairo-xml-surface.c @@ -46,6 +46,7 @@ #include "cairo-clip-private.h" #include "cairo-device-private.h" +#include "cairo-default-context-private.h" #include "cairo-error-private.h" #include "cairo-output-stream-private.h" #include "cairo-recording-surface-private.h" @@ -989,6 +990,8 @@ _cairo_xml_surface_glyphs (void *abstract_surface, static const cairo_surface_backend_t _cairo_xml_surface_backend = { CAIRO_SURFACE_TYPE_XML, + _cairo_default_context_create, + _cairo_xml_surface_create_similar, NULL, NULL, NULL, /* source image */ |