From afb50580ce0eaefe466ff63a2e0e597f35317f6b Mon Sep 17 00:00:00 2001 From: Vladimir Vukicevic Date: Wed, 16 Aug 2006 16:04:24 -0700 Subject: [PATCH] Add src-clip test case to demonstrate bug with clipping applying to a source surface. --- test/Makefile.am | 1 + test/src-clip-ref.png | Bin 0 -> 243 bytes test/src-clip.c | 100 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 101 insertions(+) create mode 100644 test/src-clip-ref.png create mode 100644 test/src-clip.c diff --git a/test/Makefile.am b/test/Makefile.am index effa3219d..5b9e20ca4 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -66,6 +66,7 @@ set-source \ show-text-current-point \ source-clip \ source-surface-scale-paint \ +src-clip \ surface-finish-twice \ surface-pattern \ text-antialias-gray \ diff --git a/test/src-clip-ref.png b/test/src-clip-ref.png new file mode 100644 index 0000000000000000000000000000000000000000..972f41d67962879478377fbe308d41f30c315f1b GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0YI$5!3HEV6KWZO6kC$Fy9>jA5L~c#`DCC7dx@v7 zEBiGL4pA0;4fXX^K%uFgE{-7?jc+d<#81NVICVH%% zR~+)ip*N-ScgKEXg%pPq4HFm@nVr~LcsL{lW=R+1cz#_n_x_w$-+P6BHX=zGp{qp_ rczq?eR3&--u1~N3pqd9#^MdKeJOjVH-MW%M2QqlN`njxgN@xNA + */ + +#include +#include "cairo-test.h" +#include + +#define SIZE 40 + +static cairo_test_draw_function_t draw; + +cairo_test_t test = { + "src-clip", + "Test a leftover clip on a source surface not affecting compositing", + SIZE * 2, SIZE, + draw +}; + +static cairo_test_status_t +draw (cairo_t *cr, int width, int height) +{ + cairo_surface_t *surf2; + cairo_t *cr2; + + /* cr: Fill the destination with our red background that should + * get covered + */ + cairo_set_source_rgb (cr, 1, 0, 0); + cairo_paint (cr); + + surf2 = cairo_surface_create_similar (cairo_get_target (cr), CAIRO_CONTENT_COLOR_ALPHA, SIZE, SIZE); + cr2 = cairo_create (surf2); + + /* cr2: Fill temp surface with green */ + cairo_set_source_rgb (cr2, 0, 1, 0); + cairo_paint (cr2); + + /* cr2: Make a blue square in the middle */ + cairo_set_source_rgb (cr2, 0, 0, 2); + cairo_save (cr2); + cairo_new_path (cr2); + cairo_rectangle (cr2, 10, 10, SIZE-20, SIZE-20); + cairo_clip (cr2); + cairo_paint (cr2); + cairo_restore (cr2); + + /* If this is uncommented, the test works as expected, because this + * forces the clip to be reset on surf2. + */ + /* + cairo_new_path (cr2); + cairo_rectangle (cr2, 0, 0, 0, 0); + cairo_fill (cr2); + */ + + /* If this scale is commented out, the test displays + * the green-and-blue square on the left side of the result. + * + * The correct "pass" image is the green-and-blue square image stretched + * by 2x. With this scale, however, only the blue (clipped) portion + * of the src shows through. + */ + cairo_scale (cr, 2.0, 1.0); + + cairo_set_source_surface (cr, surf2, 0, 0); + cairo_paint (cr); + + cairo_destroy (cr2); + cairo_surface_destroy (surf2); + + return CAIRO_TEST_SUCCESS; +} + +int +main (void) +{ + return cairo_test (&test); +}