1
/*
2
 * Copyright © 2006 Red Hat, Inc.
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: Carl D. Worth <cworth@cworth.org>
25
 */
26

            
27
#include "cairo-perf.h"
28

            
29
typedef struct {
30
    double x;
31
    double y;
32
} point_t;
33

            
34
#include "zrusin-another.h"
35

            
36
static void
37
zrusin_another_path (cairo_t *cr)
38
{
39
    unsigned int i;
40

            
41
    for (i=0; i < ARRAY_LENGTH (zrusin_another); i++)
42
	cairo_line_to (cr, zrusin_another[i].x, zrusin_another[i].y);
43
}
44

            
45
static cairo_time_t
46
zrusin_another_tessellate (cairo_t *cr, int width, int height, int loops)
47
{
48
    zrusin_another_path (cr);
49

            
50
    cairo_perf_timer_start ();
51

            
52
    /* We'd like to measure just tessellation without
53
     * rasterization. For now, we can do that with cairo_in_fill. But
54
     * we'll have to be careful since cairo_in_fill might eventually
55
     * be optimized to have an implementation that doesn't necessarily
56
     * include tessellation. */
57
    while (loops--)
58
	cairo_in_fill (cr, 50, 50);
59

            
60
    cairo_perf_timer_stop ();
61

            
62
    cairo_new_path (cr);
63

            
64
    return cairo_perf_timer_elapsed ();
65
}
66

            
67
static cairo_time_t
68
zrusin_another_fill (cairo_t *cr, int width, int height, int loops)
69
{
70
    zrusin_another_path (cr);
71
    cairo_set_source_rgb (cr, 0.0, 0.0, 0.8); /* blue */
72

            
73
    cairo_perf_timer_start ();
74

            
75
    while (loops--)
76
	cairo_fill_preserve (cr);
77

            
78
    cairo_perf_timer_stop ();
79

            
80
    cairo_new_path (cr);
81

            
82
    return cairo_perf_timer_elapsed ();
83
}
84

            
85
cairo_bool_t
86
zrusin_enabled (cairo_perf_t *perf)
87
{
88
    return cairo_perf_can_run (perf, "zrusin", NULL);
89
}
90

            
91
void
92
zrusin (cairo_perf_t *perf, cairo_t *cr, int width, int height)
93
{
94

            
95
    cairo_perf_run (perf, "zrusin-another-tessellate", zrusin_another_tessellate, NULL);
96
    cairo_perf_run (perf, "zrusin-another-fill", zrusin_another_fill, NULL);
97
}