diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-08-02 22:31:49 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-08-15 00:16:09 +0100 |
commit | 2220693a40a4f8d13603b3fb29273ec59fd433bc (patch) | |
tree | aec5bf4af07b2a2c2c0d96069e028bdcdec953e9 /configure.ac | |
parent | eed1f2efdf36173e23b7177bb34ab9a5f015fb2a (diff) |
Introduce cairo_mime_surface_t
The mime surface is a user-callback surface designed for interfacing
cairo with an opaque data source. For instance, in a web browser, the
incoming page may be laid out and rendered to a recording surface before
all the image data has finished being downloaded. In this circumstance
we need to pass a place holder to cairo and to supply the image data
later upon demand.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index fc14341d3..71f8bf3a6 100644 --- a/configure.ac +++ b/configure.ac @@ -620,6 +620,7 @@ CAIRO_ENABLE_SURFACE_BACKEND(image, image, always, [ dnl =========================================================================== +CAIRO_ENABLE_SURFACE_BACKEND(mime, mime, always) CAIRO_ENABLE_SURFACE_BACKEND(recording, recording, always) CAIRO_ENABLE_SURFACE_BACKEND(observer, observer, always) CAIRO_ENABLE_SURFACE_BACKEND(tee, tee, no) |