diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-08-29 12:07:20 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-08-29 17:10:05 +0100 |
commit | ac6c6fe1d39effd5b6b382f0f1199af824868ef4 (patch) | |
tree | a304a5534bb8a4841797d82b7d10f9312c474c82 /test | |
parent | c60280782dfac7de1abe3230a500c7c98735dc02 (diff) |
[test] Add rotated clip.
Exercise a bug found in not offsetting the clip mask when combining with
the composite mask.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 3 | ||||
-rw-r--r-- | test/Makefile.sources | 1 | ||||
-rw-r--r-- | test/rotated-clip.c | 110 | ||||
-rw-r--r-- | test/rotated-clip.ps.ref.png | bin | 0 -> 3378 bytes | |||
-rw-r--r-- | test/rotated-clip.ref.png | bin | 0 -> 3761 bytes | |||
-rw-r--r-- | test/rotated-clip.xlib.ref.png | bin | 0 -> 3922 bytes |
6 files changed, 114 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index abd5138c..4ac776ff 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -785,6 +785,9 @@ REFERENCE_IMAGES = \ rotate-image-surface-paint.quartz.ref.png \ rotate-image-surface-paint.ref.png \ rotate-image-surface-paint.svg.ref.png \ + rotated-clip.ref.png \ + rotated-clip.ps.ref.png \ + rotated-clip.xlib.ref.png \ scale-down-source-surface-paint.ref.png \ scale-offset-image.gl.ref.png \ scale-offset-image.pdf.ref.png \ diff --git a/test/Makefile.sources b/test/Makefile.sources index 7b513968..c4f2516c 100644 --- a/test/Makefile.sources +++ b/test/Makefile.sources @@ -165,6 +165,7 @@ test_sources = \ rel-path.c \ rgb24-ignore-alpha.c \ rotate-image-surface-paint.c \ + rotated-clip.c \ scale-down-source-surface-paint.c \ scale-offset-image.c \ scale-offset-similar.c \ diff --git a/test/rotated-clip.c b/test/rotated-clip.c new file mode 100644 index 00000000..4ca4566d --- /dev/null +++ b/test/rotated-clip.c @@ -0,0 +1,110 @@ +/* + * Copyright © 2007 Adrian Johnson + * Copyright © 2009 Chris Wilson + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + * Author: Adrian Johnson <ajohnson@redneon.com> + * Chris Wilson <chris@chris-wilson.co.uk> + */ + +#include "cairo-test.h" + +#define PAT_WIDTH 120 +#define PAT_HEIGHT 120 +#define SIZE (PAT_WIDTH*2) +#define PAD 2 +#define WIDTH (PAD + SIZE + PAD) +#define HEIGHT WIDTH + +static cairo_test_status_t +draw (cairo_t *cr, int width, int height) +{ + cairo_matrix_t m; + + /* make the output opaque */ + cairo_set_source_rgb (cr, 0, 0, 0); + cairo_paint (cr); + + cairo_translate (cr, PAD, PAD); + + cairo_matrix_init_scale (&m, 2, 1.5); + cairo_matrix_rotate (&m, 1); + cairo_matrix_translate (&m, -PAT_WIDTH/4.0, -PAT_WIDTH/2.0); + cairo_matrix_invert (&m); + cairo_set_matrix (cr, &m); + + cairo_rectangle (cr, 0, 0, PAT_WIDTH, PAT_HEIGHT); + cairo_clip (cr); + + cairo_set_source_rgba (cr, 1, 0, 1, 0.5); + cairo_rectangle (cr, PAT_WIDTH/6.0, PAT_HEIGHT/6.0, PAT_WIDTH/4.0, PAT_HEIGHT/4.0); + cairo_fill (cr); + + cairo_set_source_rgba (cr, 0, 1, 1, 0.5); + cairo_rectangle (cr, PAT_WIDTH/2.0, PAT_HEIGHT/2.0, PAT_WIDTH/4.0, PAT_HEIGHT/4.0); + cairo_fill (cr); + + cairo_set_line_width (cr, 1); + cairo_move_to (cr, PAT_WIDTH/6.0, 0); + cairo_line_to (cr, 0, 0); + cairo_line_to (cr, 0, PAT_HEIGHT/6.0); + cairo_set_source_rgb (cr, 1, 0, 0); + cairo_stroke (cr); + + cairo_move_to (cr, PAT_WIDTH/6.0, PAT_HEIGHT); + cairo_line_to (cr, 0, PAT_HEIGHT); + cairo_line_to (cr, 0, 5*PAT_HEIGHT/6.0); + cairo_set_source_rgb (cr, 0, 1, 0); + cairo_stroke (cr); + + cairo_move_to (cr, 5*PAT_WIDTH/6.0, 0); + cairo_line_to (cr, PAT_WIDTH, 0); + cairo_line_to (cr, PAT_WIDTH, PAT_HEIGHT/6.0); + cairo_set_source_rgb (cr, 0, 0, 1); + cairo_stroke (cr); + + cairo_move_to (cr, 5*PAT_WIDTH/6.0, PAT_HEIGHT); + cairo_line_to (cr, PAT_WIDTH, PAT_HEIGHT); + cairo_line_to (cr, PAT_WIDTH, 5*PAT_HEIGHT/6.0); + cairo_set_source_rgb (cr, 1, 1, 0); + cairo_stroke (cr); + + cairo_set_source_rgb (cr, 0.5, 0.5, 0.5); + cairo_set_line_width (cr, PAT_WIDTH/10.0); + + cairo_move_to (cr, 0, PAT_HEIGHT/4.0); + cairo_line_to (cr, PAT_WIDTH, PAT_HEIGHT/4.0); + cairo_stroke (cr); + + cairo_move_to (cr, PAT_WIDTH/4.0, 0); + cairo_line_to (cr, PAT_WIDTH/4.0, PAT_WIDTH); + cairo_stroke (cr); + + return CAIRO_TEST_SUCCESS; +} + +CAIRO_TEST (rotated_clip, + "Test clipping with non identity pattern matrix", + "clip", /* keywords */ + NULL, /* requirements */ + WIDTH, HEIGHT, + NULL, draw) diff --git a/test/rotated-clip.ps.ref.png b/test/rotated-clip.ps.ref.png Binary files differnew file mode 100644 index 00000000..a2a0aced --- /dev/null +++ b/test/rotated-clip.ps.ref.png diff --git a/test/rotated-clip.ref.png b/test/rotated-clip.ref.png Binary files differnew file mode 100644 index 00000000..8a4cc1b5 --- /dev/null +++ b/test/rotated-clip.ref.png diff --git a/test/rotated-clip.xlib.ref.png b/test/rotated-clip.xlib.ref.png Binary files differnew file mode 100644 index 00000000..93427e45 --- /dev/null +++ b/test/rotated-clip.xlib.ref.png |