summaryrefslogtreecommitdiff
path: root/test/buffer-diff.c
Commit message (Collapse)AuthorAgeFilesLines
* test: explicitly handle image formats in buffer_diff_coreManuel Stoeckl2021-08-291-15/+28
| | | | | | | | | | | | | | In practice, the A and B images may be any mixture of RGB24 and ARGB32 formats, so this change accepts all combinations of these types, and converts the pixel values to a common (ARGB32) format as needed. Some of the newly added test failures are cases where the image output is RGB24, but the matching reference image is ARGB32 with noticeable transparency. Some of the newly passing tests are cases where the unused 'alpha' channel of an RGB24 image was not equal to 0xff, and the previous code had incorrectly used this channel in max_diff calculations.
* Drop the conditional inclusion of config.hEmmanuele Bassi2021-05-011-2/+0
| | | | | | | | | | | | We *always* generate this file, and we depend on its existence. The idea behind HAVE_CONFIG_H was being able to include random files from different projects, back in a time where "libraries" were literally just random files instead of actual shared objects. Since we're not in the '80s any more, and our build system(s) define HAVE_CONFIG_H *and* generate the config.h header file, we don't need a conditional guard around its inclusion.
* test-suite: add image_diff_is_failure() functionBenjamin Otte2010-04-281-0/+8
| | | | | This cleans the code and fixes a boolean logic error where this check was done manually.
* Remove clip handling from generic surface layer.Chris Wilson2009-07-231-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Handling clip as part of the surface state, as opposed to being part of the operation state, is cumbersome and a hindrance to providing true proxy surface support. For example, the clip must be copied from the surface onto the fallback image, but this was forgotten causing undue hassle in each backend. Another example is the contortion the meta surface endures to ensure the clip is correctly recorded. By contrast passing the clip along with the operation is quite simple and enables us to write generic handlers for providing surface wrappers. (And in the future, we should be able to write more esoteric wrappers, e.g. automatic 2x FSAA, trivially.) In brief, instead of the surface automatically applying the clip before calling the backend, the backend can call into a generic helper to apply clipping. For raster surfaces, clip regions are handled automatically as part of the composite interface. For vector surfaces, a clip helper is introduced to replay and callback into an intersect_clip_path() function as necessary. Whilst this is not primarily a performance related change (the change should just move the computation of the clip from the moment it is applied by the user to the moment it is required by the backend), it is important to track any potential regression: ppc: Speedups ======== image-rgba evolution-20090607-0 1026085.22 0.18% -> 672972.07 0.77%: 1.52x speedup ▌ image-rgba evolution-20090618-0 680579.98 0.12% -> 573237.66 0.16%: 1.19x speedup ▎ image-rgba swfdec-fill-rate-4xaa-0 460296.92 0.36% -> 407464.63 0.42%: 1.13x speedup ▏ image-rgba swfdec-fill-rate-2xaa-0 128431.95 0.47% -> 115051.86 0.42%: 1.12x speedup ▏ Slowdowns ========= image-rgba firefox-periodic-table-0 56837.61 0.78% -> 66055.17 3.20%: 1.09x slowdown ▏
* [test] Do not include "xmalloc.h" directlyBehdad Esfahbod2008-09-041-1/+0
| | | | Not needed, it's renamed and included by boilerplate directly.
* [test/bufferdiff] Move unused code.Chris Wilson2008-08-201-295/+0
| | | | | Only imagediff calls png_diff, so it makes sense to move that function out of the cairo-test and into the utility.
* [test] Avoid redundant writes/reads of test surfaces via png.Chris Wilson2008-08-181-122/+205
| | | | | | | | | As Behdad suggested, we can dramatically speed up the test suite by short-circuiting the write to a png file, only to then immediately read it back in. So for the raster based surfaces, we avoid the round-trip through libpng by implementing a new boilerplate method to directly extract the image buffer from the test result. A secondary speedup is achieved by caching the most recent reference image.
* [test] Preparatory work for running under memfault.Chris Wilson2008-08-131-32/+90
| | | | | | | | | | | | | | | | | | | | In order to run under memfault, the framework is first extended to handle running concurrent tests - i.e. multi-threading. (Not that this is a requirement for memfault, instead it shares a common goal of storing per-test data). To that end all the global data is moved into a per-test context and the targets are adjusted to avoid overlap on shared, global resources (such as output files and frame buffers). In order to preserve the simplicity of the standard draw routines, the context is not passed explicitly as a parameter to the routines, but is instead attached to the cairo_t via the user_data. For the masochist, to enable the tests to be run across multiple threads simply set the environment variable CAIRO_TEST_NUM_THREADS to the desired number. In the long run, we can hope the need for memfault (runtime testing of error paths) will be mitigated by static analysis. A promising candidate for this task would appear to be http://hal.cs.berkeley.edu/cil/.
* Use pdiff only if the pixel difference is less than a limitVladimir Vukicevic2008-02-251-7/+17
|
* Bump pixman dependency to 0.9.4Søren Sandmann Pedersen2007-08-061-1/+1
| | | | Also print the download location if the library wasn't found.
* [pixman] Initial port to standalone pixman library.Søren Sandmann2007-06-211-8/+8
|
* buffer-diff - check for any errors whilst writing the pngChris Wilson2007-04-091-2/+3
| | | | Propagate any errors from writing out the png.
* [test] Plug a leak in the test suiteBehdad Esfahbod2007-03-011-0/+1
|
* Hook up pdiff to the test suite now that its written in CCarl Worth2006-12-141-0/+30
|
* test: Rework buffer_diff interface as new compare_surfacesCarl Worth2006-12-141-15/+13
| | | | | | This is a slightly kinder interface that accepts cairo_image_surface_t pointers rather than pointers to the raw image data and width, height, stride. This brings us closer to hooking up the pdiff code.
* test: Simplify buffer_diff by handling device offset in advanceCarl Worth2006-12-121-38/+65
| | | | | | | | In a manner similar to flattening in advance, we now extract the sub- surface of interest (when testing with device offsets) before calling into the buffer_diff functions. This allows these functions to accept a single stride value once again instead of one for each of the three images.
* test: Report details errors when image output files cannot be found.Carl Worth2006-09-071-4/+12
|
* test: Ignore single-bit errors for SVG backend.Carl Worth2006-08-311-36/+60
| | | | | | | | | | | | | | The interface of the various buffer/image_diff functions is improved to provide the maximum pixel difference in addition to the number of pixels that differ. This value can then be used to compare against a per-backend tolerance. Currently I've set the SVG backend's tolerance to 1 to handle some issues we're currently seeing of single-bit differences on different systems, (but we're not exactly sure why yet). Also I improved the image_diff routines to properly report a status value on failure rather than the bogus value of -1 for pixels_changed.
* Move test-specific stuff out of boilerplate/ and back into test/Carl Worth2006-08-311-0/+306
| | | | | | This now gives us two separate libtool convenience libraries, so they have to have separate names now: libcairoboilerplate.la and libcairotest.la.
* Split libcairotest files out from test/ and into boilerplate/Carl Worth2006-08-301-348/+0
| | | | | The idea here is to setup boilerplate to allow code sharing between test/ and the upcoming perf/
* [test] Add 128 to any diff component such that differences are visibleBehdad Esfahbod2006-08-301-4/+6
|
* [test] bufferdiff: take abs of the pixel diffs. Oops!Behdad Esfahbod2006-08-221-1/+2
|
* Eliminate most compiler warnings from the test suiteCarl Worth2006-08-081-1/+1
|
* Change the way diff images highlight differences.Behdad Esfahbod2006-08-011-2/+5
| | | | | | Previously it was using the equation 128+diff/3, which results in lots of gray and de-emphasized difference. Now it's using MIN(255,diff*4) which more emphasizes the real difference.
* Make image_diff_flattened flatten the first image too.Behdad Esfahbod2006-08-011-8/+26
| | | | This is useful to use the ghostscript pngalpha driver for example.
* Remove initial, final, and duplicate blank lines.Carl Worth2006-06-061-1/+0
| | | | | | This patch was produced by running git-stripspace on all *.[ch] files within cairo. Note that this script would have also created all the changes from the previous commits to remove trailing whitespace.
* Remove trailing whitespace from lines that look like comments.Carl Worth2006-06-061-1/+1
| | | | | | | | | | This patch was produced with the following (GNU) sed script: sed -i -r -e '/^[ \t]*\/?\*/ s/[ \t]+$//' run on all *.[ch] files within cairo, (though I manually excluded src/cairo-atsui-font.c which has a code line that appears as a comment to this script).
* Implement the device_offset functionality at surface, not gstate layerCarl Worth2006-05-041-4/+4
| | | | | | | | | | This is a mega-patch that has the advantage that the entire test suite passes both immediately before and immediately after this commit. The disadvantage of the mega-patch is that it does not reflect the development history of the device-offset branch, (with its various fumblings and flailings). To capture that history, we will next merge in that branch.
* Augment test framework to test everything under device offsets as well.Vladimir Vukicevic2006-05-031-28/+70
| | | | | | [With this change, two tests with gradients exhibit subtle differences under device offsets. I don't think we actually care about them though. -cworth]
* Big change to the test infrastructure and supporting internals. The goal now ↵Carl Worth2006-01-171-0/+94
| | | | | | | | | | | | | | | | | | | | 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).
* rewrite buffer_diff to be endian safe and add a new fuction buffer_diff_noalphaJeff Muizelaar2005-08-051-26/+57
|
* Remove include of math.h since cairoint.h does it more carefully, (for ↵Carl Worth2005-08-051-0/+4
| | | | | | | | annoying platforms for which just including math.h without extra defines is not enough). Replace Cairo with cairo. Include config.h so HAVE_UNISTD_H gets picked up as necessary. Fix non-UTF-8 copyright symbol.
* Patch from John Ehresman <jpe@wingide.com> to aid win32 compilation:Carl Worth2005-08-051-0/+2
| | | | | | Define snprintf as _snprintf when under the influence of _MSC_VER. Define int32_t and friends as __int32 and friends when under the influence of _MSC_VER. Make include of unistd.h conditional on HAVE_UNISTD_H.
* Add new check-valgrind target for running the test suite under the influence ↵Carl Worth2005-07-151-1/+3
| | | | | | of valgrind. Fix memory leak when reference image is not found.
* Removing mucking around with stderr and add a cairo_test_log function instead.Carl Worth2005-05-101-8/+9
| | | | Switch all error messages from fprintf(stderr,...) to cairo_test_log(...).
* Add support for testing multiple backends, courtesy of ↵Carl Worth2005-04-271-12/+86
| | | | cairo_surface_write_to_png. Currently, only image and xlib backends are fullk hooked-up, but other backends should be quite easy to add for anyone skilled in the appropriate art.
* Change type of data parameter from char* to unsigned char*.Carl Worth2005-04-041-2/+4
| | | | | | | | Propagate the unsigned char* change down the stack. Add cast since XImage uses char* rather than unsigned char*. Fix memory leak of image data. Switch to use cairo_surface_write_png rather than a custom write_png_argb32. Add test to exercise the cairo_image_surface_create_for_png function.
* More _/- renames in the test directory.Carl Worth2005-03-291-1/+1
|
* test/imagediff.cCarl Worth2005-01-251-0/+73
Add new testsvg script and accompanying imagediff program, (for interim SVG-based test suites while we wait for the standard cairo test suite to mature). Split buffer_diff out into its own file for the purpose of imagediff.