2006-11-06 23:56:19 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2006 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Author: Carl D. Worth <cworth@cworth.org>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "cairo-perf.h"
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
double x;
|
|
|
|
|
double y;
|
|
|
|
|
} point_t;
|
|
|
|
|
|
|
|
|
|
#include "zrusin-another.h"
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
zrusin_another_path (cairo_t *cr)
|
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
2014-04-16 17:37:18 -07:00
|
|
|
for (i=0; i < ARRAY_LENGTH (zrusin_another); i++)
|
2006-11-06 23:56:19 -08:00
|
|
|
cairo_line_to (cr, zrusin_another[i].x, zrusin_another[i].y);
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-31 17:55:07 +02:00
|
|
|
static cairo_time_t
|
2009-08-03 22:23:19 +01:00
|
|
|
zrusin_another_tessellate (cairo_t *cr, int width, int height, int loops)
|
2006-11-06 23:56:19 -08:00
|
|
|
{
|
|
|
|
|
zrusin_another_path (cr);
|
|
|
|
|
|
|
|
|
|
cairo_perf_timer_start ();
|
|
|
|
|
|
|
|
|
|
/* We'd like to measure just tessellation without
|
|
|
|
|
* rasterization. For now, we can do that with cairo_in_fill. But
|
|
|
|
|
* we'll have to be careful since cairo_in_fill might eventually
|
|
|
|
|
* be optimized to have an implementation that doesn't necessarily
|
|
|
|
|
* include tessellation. */
|
2009-08-03 22:23:19 +01:00
|
|
|
while (loops--)
|
|
|
|
|
cairo_in_fill (cr, 50, 50);
|
2006-11-06 23:56:19 -08:00
|
|
|
|
|
|
|
|
cairo_perf_timer_stop ();
|
|
|
|
|
|
|
|
|
|
cairo_new_path (cr);
|
|
|
|
|
|
|
|
|
|
return cairo_perf_timer_elapsed ();
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-31 17:55:07 +02:00
|
|
|
static cairo_time_t
|
2009-08-03 22:23:19 +01:00
|
|
|
zrusin_another_fill (cairo_t *cr, int width, int height, int loops)
|
2006-11-06 23:56:19 -08:00
|
|
|
{
|
|
|
|
|
zrusin_another_path (cr);
|
|
|
|
|
cairo_set_source_rgb (cr, 0.0, 0.0, 0.8); /* blue */
|
|
|
|
|
|
|
|
|
|
cairo_perf_timer_start ();
|
|
|
|
|
|
2009-08-03 22:23:19 +01:00
|
|
|
while (loops--)
|
|
|
|
|
cairo_fill_preserve (cr);
|
2006-11-06 23:56:19 -08:00
|
|
|
|
|
|
|
|
cairo_perf_timer_stop ();
|
|
|
|
|
|
|
|
|
|
cairo_new_path (cr);
|
|
|
|
|
|
|
|
|
|
return cairo_perf_timer_elapsed ();
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-30 17:28:21 +01:00
|
|
|
cairo_bool_t
|
|
|
|
|
zrusin_enabled (cairo_perf_t *perf)
|
|
|
|
|
{
|
|
|
|
|
return cairo_perf_can_run (perf, "zrusin", NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-06 23:56:19 -08:00
|
|
|
void
|
|
|
|
|
zrusin (cairo_perf_t *perf, cairo_t *cr, int width, int height)
|
|
|
|
|
{
|
2009-02-06 20:11:17 +00:00
|
|
|
|
2010-03-30 04:10:28 +01:00
|
|
|
cairo_perf_run (perf, "zrusin-another-tessellate", zrusin_another_tessellate, NULL);
|
|
|
|
|
cairo_perf_run (perf, "zrusin-another-fill", zrusin_another_fill, NULL);
|
2006-11-06 23:56:19 -08:00
|
|
|
}
|