1
/*
2
 * Copyright © 2006 Red Hat, Inc.
3
 *
4
 * Permission to use, copy, modify, distribute, and sell this software
5
 * and its documentation for any purpose is hereby granted without
6
 * fee, provided that the above copyright notice appear in all copies
7
 * and that both that copyright notice and this permission notice
8
 * appear in supporting documentation, and that the name of
9
 * Red Hat, Inc. not be used in advertising or publicity pertaining to
10
 * distribution of the software without specific, written prior
11
 * permission. Red Hat, Inc. makes no representations about the
12
 * suitability of this software for any purpose.  It is provided "as
13
 * is" without express or implied warranty.
14
 *
15
 * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16
 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17
 * FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
18
 * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19
 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
21
 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
 *
23
 * Author: Carl D. Worth <cworth@cworth.org>
24
 */
25

            
26
#include "cairo-perf.h"
27

            
28
static cairo_time_t
29
do_stroke (cairo_t *cr, int width, int height, int loops)
30
{
31
    cairo_arc (cr,
32
	       width/2.0, height/2.0,
33
	       width/3.0,
34
	       0, 2 * M_PI);
35
    cairo_close_path (cr);
36

            
37
    cairo_set_line_width (cr, width/5.0);
38

            
39
    cairo_perf_timer_start ();
40

            
41
    while (loops--)
42
	cairo_stroke_preserve (cr);
43

            
44
    cairo_perf_timer_stop ();
45

            
46
    cairo_new_path (cr);
47

            
48
    return cairo_perf_timer_elapsed ();
49
}
50

            
51
static void
52
rounded_rectangle (cairo_t *cr,
53
		   double x, double y, double w, double h,
54
		   double radius)
55
{
56
    cairo_move_to (cr, x+radius, y);
57
    cairo_arc (cr, x+w-radius, y+radius,   radius, M_PI + M_PI / 2, M_PI * 2        );
58
    cairo_arc (cr, x+w-radius, y+h-radius, radius, 0,               M_PI / 2        );
59
    cairo_arc (cr, x+radius,   y+h-radius, radius, M_PI/2,          M_PI            );
60
    cairo_arc (cr, x+radius,   y+radius,   radius, M_PI,            270 * M_PI / 180);
61
}
62

            
63
static cairo_time_t
64
do_strokes (cairo_t *cr, int width, int height, int loops)
65
{
66
    /* a pair of overlapping rectangles */
67
    rounded_rectangle (cr,
68
		       2, 2, width/2. + 10, height/2. + 10,
69
		       10);
70
    rounded_rectangle (cr,
71
		       width/2. - 10, height/2. - 10,
72
		       width/2. - 2, height/2. - 2,
73
		       10);
74

            
75
    cairo_set_line_width (cr, 2.);
76

            
77
    cairo_perf_timer_start ();
78

            
79
    while (loops--)
80
	cairo_stroke_preserve (cr);
81

            
82
    cairo_perf_timer_stop ();
83

            
84
    cairo_new_path (cr);
85

            
86
    return cairo_perf_timer_elapsed ();
87
}
88

            
89
cairo_bool_t
90
stroke_enabled (cairo_perf_t *perf)
91
{
92
    return cairo_perf_can_run (perf, "stroke", NULL);
93
}
94

            
95
void
96
stroke (cairo_perf_t *perf, cairo_t *cr, int width, int height)
97
{
98
    cairo_perf_cover_sources_and_operators (perf, "stroke", do_stroke, NULL);
99
    cairo_perf_cover_sources_and_operators (perf, "strokes", do_strokes, NULL);
100
}