cairo/boilerplate
Vladimir Vukicevic dfe3e20a4a [win32] Fix boilerplate for win32 surfaces to use new _with_dib function
Create test surfaces for win32 using _with_dib instead of creating the
dib locally; also test CONTENT_COLOR and CONTENT_COLOR_ALPHA.
2006-09-09 18:56:58 -07:00
..
.gitignore Add 2006-09-06 13:58:31 -04:00
cairo-boilerplate.c [win32] Fix boilerplate for win32 surfaces to use new _with_dib function 2006-09-09 18:56:58 -07:00
cairo-boilerplate.h Use unsigned consistently to avoid compiler warning. 2006-09-09 16:04:51 -07:00
cairo-test-beos.cpp Split libcairotest files out from test/ and into boilerplate/ 2006-08-30 15:34:27 -07:00
cairo-test-beos.h Split libcairotest files out from test/ and into boilerplate/ 2006-08-30 15:34:27 -07:00
cairo-test-directfb.c Split libcairotest files out from test/ and into boilerplate/ 2006-08-30 15:34:27 -07:00
cairo-test-directfb.h Split libcairotest files out from test/ and into boilerplate/ 2006-08-30 15:34:27 -07:00
Makefile.am [Makefile] Fix typo 2006-09-06 12:45:07 -04:00
Makefile.win32 [win32] win32-specific Makefiles for building with MSVC 2006-09-09 17:08:18 -07:00
README Add boilerplate/README explaining its purpose 2006-08-30 22:33:53 -07:00
xmalloc.c Move test-specific stuff out of boilerplate/ and back into test/ 2006-08-31 01:39:06 -07:00
xmalloc.h Split libcairotest files out from test/ and into boilerplate/ 2006-08-30 15:34:27 -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).