summaryrefslogtreecommitdiff
path: root/src/test-fallback-surface.c
AgeCommit message (Collapse)AuthorFilesLines
2008-09-27clone_similar(): s/device_offset/clone_offset/Chris Wilson1-4/+4
A little bit of sleep and reflection suggested that the use of device_offset_[xy] was confusing and clone_offset_[xy] more consistent with the function naming.
2008-09-27Allow cloning sub-regions of similar surfaces.Chris Wilson1-0/+4
Previously the rule for clone_similar() was that the returned surface had exactly the same size as the original, but only the contents within the region of interest needed to be copied. This caused failures for very large images in the xlib-backend (see test/large-source). The obvious solution to allow cloning only the region of interest seemed to be to simply set the device offset on the cloned surface. However, this fails as a) nothing respects the device offset on the surface at that layer in the compositing stack and b) possibly returning references to the original source surface provides further confusion by mixing in another source of device offset. The second method was to add extra out parameters so that the device offset could be returned separately and, for example, mixed into the pattern matrix. Not as elegant, a couple of extra warts to the interface, but it works - one less XFAIL...
2008-01-28[doc] Make sure all macro names in docs are prefixed by %Behdad Esfahbod1-2/+2
2008-01-16[cairo-surface] Introduce _cairo_surface_create_in_error().Chris Wilson1-3/+2
Unexport all the static error surfaces and use a function to select the appropriate error surface for the status.
2007-10-05[test-surfaces] Mark the test backend as static.Chris Wilson1-2/+2
There is no need to export the test surface backends, so mark them static.
2007-10-04[cairo-error] Clean up all the warnings and missing _cairo_error() calls.Chris Wilson1-1/+1
Every time we assign or return a hard-coded error status wrap that value with a call to _cairo_error(). So the idiom becomes: status = _cairo_error (CAIRO_STATUS_NO_MEMORY); or return _cairo_error (CAIRO_STATUS_INVALID_DASH); This ensures that a breakpoint placed on _cairo_error() will trigger immediately cairo detects the error.
2007-07-18[fixpt] Replace cairo_rectangle_int16_t with cairo_rectangle_int_tVladimir Vukicevic1-6/+6
Mostly s/cairo_rectangle_int16_t/cairo_rectangle_int_t/, as well as definitions to pick cairo_rectangle_int_t.
2007-05-08[test-fallback-surface] Destroy the backing image on malloc failure.Chris Wilson1-0/+1
Ensure we free all local resource should we encounter an allocation failure during _cairo_test_fallback_surface_create().
2007-04-09Implement clone_surface for test-fallback-surface.Chris Wilson1-1/+21
A few tests were failing due to clip_init_deep_copy() not being able to clone the target surface. Before propagating the failure, this was being silently ignored. Copy the simple implementation from cairo-image-surface.
2007-04-03[src] Make sure all source files #include "cairoint.h" as their first includeBehdad Esfahbod1-2/+2
This is necessary to avoid many portability problems as cairoint.h includes config.h. Without a test, we will regress again, hence add it. The inclusion idiom for cairo now is: #include "cairoint.h" #include "cairo-something.h" #include "cairo-anotherthing-private.h" #include <some-library.h> #include <other-library/other-file.h> Moreover, some standard headers files are included from cairoint.h and need not be included again.
2007-03-20Oops. Remove cairo-mutex-private.h include from test surfacesBehdad Esfahbod1-1/+0
as that file is included from cairoint.h now.
2007-03-20Include cairo-mutex-private.h in test backendsBehdad Esfahbod1-0/+1
2007-03-13[test-surfaces] Prefix public symbols with _cairoBehdad Esfahbod1-4/+4
2006-09-05slim_hidden_proto: Move smeicolon from definition to use for consistency and ↵Carl Worth1-1/+1
legibility
2006-09-05Add many missing slim_hidden calls to bypass PLT entries for local use of ↵Carl Worth1-0/+3
public functions
2006-06-06Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t.Carl Worth1-5/+5
This rectangle has regular integer values, not fixed-point values. So the old name was horribly wrong and misleading, (and yes I think it was even I that had suggested it).
2006-06-06Remove extraneous whitespace from "blank" lines.Carl Worth1-2/+2
This patch was produced with the following (GNU) sed script: sed -i -r -e 's/^[ \t]+$//' run on all *.[ch] files within cairo.
2006-05-24New API: Add new function cairo_surface_get_contentCarl Worth1-1/+2
This assumes that the directfb, glitz, and quartz backends always create surfaces with content of COLOR_ALPHA which might be totally wrong.
2006-05-04Rename cairo_rectangle_t to cairo_rectangle_fixed_t.Robert O'Callahan1-12/+12
This is in preparation for a later function addition for extracting clip rectangles from a cairo_t, (which will add a public cairo_rectangle_t).
2006-02-28Add testing for cairo_surface_get_type.Carl Worth1-0/+1
All test targets now list an expected cairo_surface_type_t. Add notes on current limitations of PDF/PS/meta-surface support that causes CAIRO_CONTENT_COLOR similar surfaces of PDF and PS surfaces to be returned as image surfaces. Add cairo_internal_surface_type_t for the meta, paginated, and various test surfaces.
2006-01-17Big change to the test infrastructure and supporting internals. The goal now ↵Carl Worth1-3/+3
is to test both a COLOR_ALPHA and a COLOR content for each surface backend, (since the semantics are different and we probably need to support both in each backend. The PS/PDF backends don't allow a content to be passed in right now, so they fail against the rgb24 tests, but the trivial addition to the constructors will allow them to pass all tests with both content values. And new constructors (currently internal only) to create an image surface with a cairo_content_t rather than a cairo_format_t. Add a cairo_content_t argument to the constructor. Add a cairo_content_t to the constructor and use this content value when constructing intermediate image surfaces in acquire_source, show_page, copy_page, and snapshot. Add image flattening by compositing over white, as is done in cairo-ps-surface.c. Track changes to cairo-paginates-surface which now requires a cairo_content_t value (no change to public PS/PDF constructors yet). Track change in meta-surface and paginated-surface interfaces by now accepting a cairo_content_t rather than a cairo_format_t. Ignore new output files (argb32 from pdf and ps as well as rgb24 from test-fallback, test-meta, and test-paginated). Add new utility for flattening PNG images in order to generate the -argbf-ref.png images. Add image_diff_flattened for comparing flattened output from PS and PDF backend with ARGB reference images by first blending the reference images over white. Get rid of conditional, format-specific background-color initialization before running tests. Now uses ARGB(0,0,0,0) in all cases. Switch from specifying tests with a format value to specifying tests with a content value. Add support for a 'fake' COLOR_ALPHA_FLATTENED content for testing the PS and PDF output against a flattened version of the argb32 reference images (first blended over white). Track change in cairo_ps_surface_create (now requires cairo_content_t value). Adjust tests that draw in default (black) to first paint white so that the results are visible. Adjust ARGB32 reference images for new white background for changed tests. Adjust RGB24 reference images for new black background due to changed initialization (and the tests themselves being unchanged).
2005-12-20Add some comments describing what a cairo_meta_surface_t is.Carl Worth1-28/+0
Remove unused _test_fallback_surface_create_for_data. Remove unused _test_meta_surface_create_for_data. Add missing source file src/test-meta-surface.h.
2005-12-19Use _cairo_surface_paint rather than _cairo_surface_fill_rectangle as only ↵Carl Worth1-2/+6
the former is guaranteed to work with all backends. Refine the comment describing this test surface. Add new test surface for exercising cairo_meta_surface. Simplify the image and test_fallback targets by not using create_for_data. Allow for NULL cleanup target functions. Add support for the test_meta_surface.
2005-12-16Return a test_fallback_surface_t rather than a cairo_image_surface_t for ↵Carl Worth1-3/+7
better testing, (otherwise, an image surface would meet the semantic demands of create_similar just fine).
2005-12-16Add a new option --enable-test-surfaces.Carl Worth1-0/+225
New surface backend for testing only. It has as many NULL backend entries as possible. Add support to test the new test_fallback backend.