cairo/boilerplate
Chris Wilson 6003ab77e1 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.
2009-07-03 18:26:50 +01:00
..
.gitignore [build] Include all generated win32 build files in the repo 2009-01-09 15:55:24 -05:00
cairo-boilerplate-beos-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-beos.cpp [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-directfb-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-directfb.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-getopt.c [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-getopt.h [cairo-boilerplate] Silence compiler warning. 2008-06-13 21:34:43 +01:00
cairo-boilerplate-glitz-agl.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-glitz-glx.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-glitz-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-glitz-wgl.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-pdf-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-pdf.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-ps-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-ps.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-qt-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-qt.cpp [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-quartz-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-quartz.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-scaled-font.h [scaled-font] Get rid of _cairo_scaled_font_test_set_max_glyphs_cached_per_font 2007-04-21 03:43:04 -04:00
cairo-boilerplate-script-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-script.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-svg-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-svg.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-system.c [perf] Benchmark traces 2009-06-02 15:13:47 +01:00
cairo-boilerplate-system.h [perf] Benchmark traces 2009-06-02 15:13:47 +01:00
cairo-boilerplate-test-surfaces-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-test-surfaces.c [boilerplate] Only include null-test-surface >= cairo-1.9.3 2009-06-30 22:12:50 +01:00
cairo-boilerplate-win32-printing.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-win32-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-win32.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-xcb-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-xcb.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-xlib-private.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-xlib.c [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
cairo-boilerplate-xlib.h [boilerplate] Add missing headers. Oops! 2007-04-21 07:23:30 -04:00
cairo-boilerplate.c Export meta-surface 2009-07-03 18:26:50 +01:00
cairo-boilerplate.h [test] Add group-unaligned 2009-06-27 17:53:18 +01:00
check-link.c [boilerplate/check-link.c] Oops. Add it. 2008-09-02 22:03:05 -04:00
Makefile.am [boilerplate] Check for connect() in libsocket. 2009-06-18 15:48:59 +01:00
Makefile.sources Import Qt backend by Mozilla 2009-06-16 11:03:46 +01:00
Makefile.win32 [test-win32] Fix static linking of the test suite. 2009-04-01 11:32:58 -04:00
Makefile.win32.features Export meta-surface 2009-07-03 18:26:50 +01:00
README Add boilerplate/README explaining its purpose 2006-08-30 22:33:53 -07:00

This directory provides code that is common to both of cairo's tests
suites:

 * The test suite for correctness in test/
 * The test suite for performance in perf/

We call it boilerplate as it consists primarily of the boilerplate
code necessary for initializing a backend in order to create a surface
for that backend.

The code here just might be useful for someone looking to get started
writing cairo code to use a particular backend, (but there are no
promises that the boilerplate code found here for any particular
backend is exemplary).