1
/*
2
 * Copyright © 2011 Intel Corporation
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: Chris Wilson <chris@chris-wilson.co.uk>
25
 */
26

            
27
#include "cairo-perf.h"
28

            
29
static uint32_t state;
30

            
31
static double
32
uniform_random (double minval, double maxval)
33
{
34
    static uint32_t const poly = 0x9a795537U;
35
    uint32_t n = 32;
36
    while (n-->0)
37
	state = 2*state < state ? (2*state ^ poly) : 2*state;
38
    return minval + state * (maxval - minval) / 4294967296.0;
39
}
40

            
41
static cairo_time_t
42
do_curve_stroke (cairo_t *cr, int width, int height, int loops)
43
{
44
    state = 0xc0ffee;
45
    cairo_set_line_width (cr, 2.);
46
    cairo_perf_timer_start ();
47

            
48
    while (loops--) {
49
	double x1 = uniform_random (0, width);
50
	double x2 = uniform_random (0, width);
51
	double x3 = uniform_random (0, width);
52
	double y1 = uniform_random (0, height);
53
	double y2 = uniform_random (0, height);
54
	double y3 = uniform_random (0, height);
55
	cairo_move_to (cr, uniform_random (0, width), uniform_random (0, height));
56
	cairo_curve_to (cr, x1, y1, x2, y2, x3, y3);
57
	cairo_stroke(cr);
58
    }
59

            
60
    cairo_perf_timer_stop ();
61

            
62
    return cairo_perf_timer_elapsed ();
63
}
64

            
65
static cairo_time_t
66
do_curve_fill (cairo_t *cr, int width, int height, int loops)
67
{
68
    state = 0xc0ffee;
69
    cairo_perf_timer_start ();
70

            
71
    while (loops--) {
72
	double x0 = uniform_random (0, width);
73
	double x1 = uniform_random (0, width);
74
	double x2 = uniform_random (0, width);
75
	double x3 = uniform_random (0, width);
76
	double xm = uniform_random (0, width);
77
	double xn = uniform_random (0, width);
78
	double y0 = uniform_random (0, height);
79
	double y1 = uniform_random (0, height);
80
	double y2 = uniform_random (0, height);
81
	double y3 = uniform_random (0, height);
82
	double ym = uniform_random (0, height);
83
	double yn = uniform_random (0, height);
84

            
85
	cairo_move_to (cr, xm, ym);
86
	cairo_curve_to (cr, x1, y1, x2, y2, xn, yn);
87
	cairo_curve_to (cr, x3, y3, x0, y0, xm, ym);
88
	cairo_close_path (cr);
89

            
90
	cairo_fill(cr);
91
    }
92

            
93
    cairo_perf_timer_stop ();
94

            
95
    return cairo_perf_timer_elapsed ();
96
}
97

            
98
cairo_bool_t
99
curve_enabled (cairo_perf_t *perf)
100
{
101
    return cairo_perf_can_run (perf, "curve", NULL);
102
}
103

            
104
void
105
curve (cairo_perf_t *perf, cairo_t *cr, int width, int height)
106
{
107
    cairo_set_source_rgb (cr, 1., 1., 1.);
108

            
109
    cairo_perf_run (perf, "curve-stroked", do_curve_stroke, NULL);
110
    cairo_perf_run (perf, "curve-filled", do_curve_fill, NULL);
111
}