diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-07-03 18:26:50 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-07-03 18:26:50 +0100 |
commit | 6003ab77e1ebefadb97338de0e7da4a76d973b1a (patch) | |
tree | e375335dac3abfdd3e75cb18a317824556de84f6 /build | |
parent | 2a9903dbbfeb3fe843f0d618d15674b37a29f3a9 (diff) |
Export meta-surface
The meta-surface is a vital tool to record a trace of drawing commands
in-memory. As such it is used throughout cairo.
The value of such a surface is immediately obvious and should be
applicable for many applications. The first such case is by
cairo-test-trace which wants to record the entire graph of drawing commands
that affect a surface in the event of a failure.
Diffstat (limited to 'build')
-rw-r--r-- | build/Makefile.win32.features-h | 1 | ||||
-rw-r--r-- | build/configure.ac.features | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/build/Makefile.win32.features-h b/build/Makefile.win32.features-h index 3cfc5424..fd5f05d8 100644 --- a/build/Makefile.win32.features-h +++ b/build/Makefile.win32.features-h @@ -69,5 +69,6 @@ ifeq ($(CAIRO_HAS_TEST_SURFACES),1) @echo "#define CAIRO_HAS_TEST_SURFACES 1" >> src/cairo-features.h endif @echo "#define CAIRO_HAS_IMAGE_SURFACE 1" >> src/cairo-features.h + @echo "#define CAIRO_HAS_META_SURFACE 1" >> src/cairo-features.h @echo "#define CAIRO_HAS_USER_FONT 1" >> src/cairo-features.h @echo "#endif" >> src/cairo-features.h diff --git a/build/configure.ac.features b/build/configure.ac.features index d3d321fd..3f866801 100644 --- a/build/configure.ac.features +++ b/build/configure.ac.features @@ -361,6 +361,7 @@ AC_DEFUN([CAIRO_REPORT], echo "" echo "The following surface backends:" echo " Image: yes (always builtin)" + echo " Meta: yes (always builtin)" echo " Xlib: $use_xlib" echo " Xlib Xrender: $use_xlib_xrender" echo " Qt: $use_qt" |