7f24702195c83b41582a46089f8d8cd6ae61e8b1
[framework/graphics/cairo.git] / perf / micro / fill.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_fill (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
36     cairo_perf_timer_start ();
37     cairo_perf_set_thread_aware (cr, FALSE);
38
39     while (loops--) {
40         if (loops == 0)
41                 cairo_perf_set_thread_aware (cr, TRUE);
42         cairo_fill_preserve (cr);
43     }
44
45     cairo_perf_timer_stop ();
46
47     cairo_new_path (cr);
48
49     return cairo_perf_timer_elapsed ();
50 }
51
52 static cairo_time_t
53 do_fill_annuli (cairo_t *cr, int width, int height, int loops)
54 {
55     cairo_new_sub_path (cr);
56     cairo_arc (cr,
57                width/2.0, height/2.0,
58                width/3.0,
59                0, 2 * M_PI);
60
61     cairo_new_sub_path (cr);
62     cairo_arc_negative (cr,
63                width/2.0, height/2.0,
64                width/4.0,
65                2 * M_PI, 0);
66
67     cairo_new_sub_path (cr);
68     cairo_arc (cr,
69                width/2.0, height/2.0,
70                width/6.0,
71                0, 2 * M_PI);
72
73     cairo_new_sub_path (cr);
74     cairo_arc_negative (cr,
75                width/2.0, height/2.0,
76                width/8.0,
77                2 * M_PI, 0);
78
79     cairo_perf_timer_start ();
80     cairo_perf_set_thread_aware (cr, FALSE);
81
82     while (loops--) {
83         if (loops == 0)
84             cairo_perf_set_thread_aware (cr, TRUE);
85         cairo_fill_preserve (cr);
86     }
87
88     cairo_perf_timer_stop ();
89
90     cairo_new_path (cr);
91
92     return cairo_perf_timer_elapsed ();
93 }
94
95 static cairo_time_t
96 do_fill_eo_noaa (cairo_t *cr, int width, int height, int loops)
97 {
98     cairo_set_antialias (cr, CAIRO_ANTIALIAS_NONE);
99     cairo_set_fill_rule (cr, CAIRO_FILL_RULE_EVEN_ODD);
100
101     cairo_arc (cr,
102                width/2.0, height/2.0,
103                width/3.0,
104                0, 2 * M_PI);
105
106     cairo_perf_timer_start ();
107     cairo_perf_set_thread_aware (cr, FALSE);
108
109     while (loops--) {
110         if (loops == 0)
111             cairo_perf_set_thread_aware (cr, TRUE);
112         cairo_fill_preserve (cr);
113     }
114
115     cairo_perf_timer_stop ();
116
117     cairo_new_path (cr);
118
119     return cairo_perf_timer_elapsed ();
120 }
121
122 cairo_bool_t
123 fill_enabled (cairo_perf_t *perf)
124 {
125     return cairo_perf_can_run (perf, "fill", NULL);
126 }
127
128 void
129 fill (cairo_perf_t *perf, cairo_t *cr, int width, int height)
130 {
131     cairo_perf_cover_sources_and_operators (perf, "fill", do_fill, NULL);
132     cairo_perf_cover_sources_and_operators (perf, "fill-annuli", do_fill_annuli, NULL);
133     cairo_perf_cover_sources_and_operators (perf, "fill-eo-noaa", do_fill_eo_noaa, NULL);
134 }