ShaderEffect subclasses from Effect, not DependencyObject
[moon.git] / cairo / perf / rectangles.c
blob991391c4517fb2e562d63f81535568cdfca606ca
1 /*
2 * Copyright © 2006 Dan Amelang
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 * the authors not be used in advertising or publicity pertaining to
10 * distribution of the software without specific, written prior
11 * permission. The authors make no representations about the
12 * suitability of this software for any purpose. It is provided "as
13 * is" without express or implied warranty.
15 * THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
16 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 * FITNESS, IN NO EVENT SHALL THE AUTHORS 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.
23 * Authors: Dan Amelang <dan@amelang.net>
25 #include "cairo-perf.h"
27 #if 0
28 #define MODE cairo_perf_run
29 #else
30 #define MODE cairo_perf_cover_sources_and_operators
31 #endif
33 #define RECTANGLE_COUNT (1000)
35 static struct
37 double x;
38 double y;
39 double width;
40 double height;
41 } rects[RECTANGLE_COUNT];
43 static cairo_perf_ticks_t
44 do_rectangles (cairo_t *cr, int width, int height)
46 int i;
48 cairo_perf_timer_start ();
50 for (i = 0; i < RECTANGLE_COUNT; i++)
52 cairo_rectangle (cr, rects[i].x, rects[i].y,
53 rects[i].width, rects[i].height);
54 cairo_fill (cr);
57 cairo_perf_timer_stop ();
59 return cairo_perf_timer_elapsed ();
62 static cairo_perf_ticks_t
63 do_rectangle (cairo_t *cr, int width, int height)
65 cairo_perf_timer_start ();
67 cairo_rectangle (cr, 0, 0, width, height);
68 cairo_fill (cr);
70 cairo_perf_timer_stop ();
72 return cairo_perf_timer_elapsed ();
75 void
76 rectangles (cairo_perf_t *perf, cairo_t *cr, int width, int height)
78 int i;
80 srand (8478232);
81 for (i = 0; i < RECTANGLE_COUNT; i++)
83 rects[i].x = rand () % width;
84 rects[i].y = rand () % height;
85 rects[i].width = (rand () % (width / 10)) + 1;
86 rects[i].height = (rand () % (height / 10)) + 1;
89 MODE (perf, "one-rectangle", do_rectangle);
90 MODE (perf, "rectangles", do_rectangles);