1
/*
2
 * Copyright © 2007 Adrian Johnson
3
 *
4
 * Permission is hereby granted, free of charge, to any person
5
 * obtaining a copy of this software and associated documentation
6
 * files (the "Software"), to deal in the Software without
7
 * restriction, including without limitation the rights to use, copy,
8
 * modify, merge, publish, distribute, sublicense, and/or sell copies
9
 * of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be
13
 * included in all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
 * SOFTWARE.
23
 *
24
 * Author: Adrian Johnson <ajohnson@redneon.com>
25
 */
26

            
27
#include "cairo-test.h"
28

            
29
#define SIZE 40
30
#define PAD 2
31
#define WIDTH (PAD + SIZE + PAD)
32
#define HEIGHT WIDTH
33

            
34
/* This test is designed to test that PDF viewers use the correct
35
 * alpha values in an Alpha SMasks. Some viewers use the color values
36
 * instead of the alpha. The test draws a triangle and rectangle in a
37
 * group then draws the group using cairo_mask(). The mask consists of
38
 * a circle with the rgba (0.4, 0.4, 0.4, 0.8) and the background rgba
39
 * (0.8, 0.8, 0.8, 0.4).
40
 */
41

            
42
static cairo_test_status_t
43
3
draw (cairo_t *cr, int width, int height)
44
{
45
    cairo_pattern_t *pattern;
46

            
47
3
    cairo_translate (cr, PAD, PAD);
48

            
49
    /* mask */
50
3
    cairo_push_group (cr);
51
3
    cairo_set_source_rgba (cr, 0.8, 0.8, 0.8, 0.4);
52
3
    cairo_paint (cr);
53
3
    cairo_arc (cr, SIZE / 2, SIZE / 2, SIZE / 6, 0., 2. * M_PI);
54
3
    cairo_set_source_rgba (cr, 0.4, 0.4, 0.4, 0.8);
55
3
    cairo_fill (cr);
56
3
    pattern = cairo_pop_group (cr);
57

            
58
    /* source */
59
3
    cairo_push_group (cr);
60
3
    cairo_rectangle (cr, 0.3 * SIZE, 0.2 * SIZE, 0.5 * SIZE, 0.5 * SIZE);
61
3
    cairo_set_source_rgb (cr, 0, 0, 1);
62
3
    cairo_fill (cr);
63
3
    cairo_move_to     (cr,   0.0,          0.8 * SIZE);
64
3
    cairo_rel_line_to (cr,   0.7 * SIZE,   0.0);
65
3
    cairo_rel_line_to (cr, -0.375 * SIZE, -0.6 * SIZE);
66
3
    cairo_close_path (cr);
67
3
    cairo_set_source_rgb (cr, 0, 1, 0);
68
3
    cairo_fill (cr);
69
3
    cairo_pop_group_to_source (cr);
70

            
71
3
    cairo_mask (cr, pattern);
72
3
    cairo_pattern_destroy (pattern);
73

            
74
3
    return CAIRO_TEST_SUCCESS;
75
}
76

            
77
1
CAIRO_TEST (mask_alpha,
78
	    "A simple test painting a group through a circle mask",
79
	    "mask, alpha", /* keywords */
80
	    NULL, /* requirements */
81
	    WIDTH, HEIGHT,
82
	    NULL, draw)