Tizen 2.0 Release
[framework/graphics/cairo.git] / perf / micro / stroke.c
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     cairo_perf_set_thread_aware (cr, FALSE);
41
42     while (loops--) {
43         if (loops == 0)
44                 cairo_perf_set_thread_aware (cr, TRUE);
45         cairo_stroke_preserve (cr);
46     }
47
48     cairo_perf_timer_stop ();
49
50     cairo_new_path (cr);
51
52     return cairo_perf_timer_elapsed ();
53 }
54
55 static void
56 rounded_rectangle (cairo_t *cr,
57                    double x, double y, double w, double h,
58                    double radius)
59 {
60     cairo_move_to (cr, x+radius, y);
61     cairo_arc (cr, x+w-radius, y+radius,   radius, M_PI + M_PI / 2, M_PI * 2        );
62     cairo_arc (cr, x+w-radius, y+h-radius, radius, 0,               M_PI / 2        );
63     cairo_arc (cr, x+radius,   y+h-radius, radius, M_PI/2,          M_PI            );
64     cairo_arc (cr, x+radius,   y+radius,   radius, M_PI,            270 * M_PI / 180);
65 }
66
67 static cairo_time_t
68 do_strokes (cairo_t *cr, int width, int height, int loops)
69 {
70     /* a pair of overlapping rectangles */
71     rounded_rectangle (cr,
72                        2, 2, width/2. + 10, height/2. + 10,
73                        10);
74     rounded_rectangle (cr,
75                        width/2. - 10, height/2. - 10,
76                        width/2. - 2, height/2. - 2,
77                        10);
78
79     cairo_set_line_width (cr, 2.);
80
81     cairo_perf_timer_start ();
82     cairo_perf_set_thread_aware (cr, FALSE);
83
84     while (loops--) {
85         if (loops == 0)
86                 cairo_perf_set_thread_aware (cr, TRUE);
87         cairo_stroke_preserve (cr);
88     }
89
90     cairo_perf_timer_stop ();
91
92     cairo_new_path (cr);
93
94     return cairo_perf_timer_elapsed ();
95 }
96
97 cairo_bool_t
98 stroke_enabled (cairo_perf_t *perf)
99 {
100     return cairo_perf_can_run (perf, "stroke", NULL);
101 }
102
103 void
104 stroke (cairo_perf_t *perf, cairo_t *cr, int width, int height)
105 {
106     cairo_perf_cover_sources_and_operators (perf, "stroke", do_stroke, NULL);
107     cairo_perf_cover_sources_and_operators (perf, "strokes", do_strokes, NULL);
108 }