Exemple #1
0
static cairo_perf_ticks_t
mosaic_tessellate_curves (cairo_t *cr, int width, int height, int loops)
{
    return mosaic_perform (cr, MOSAIC_TESSELLATE | MOSAIC_CURVE_TO, width, height, loops);
}
Exemple #2
0
static cairo_perf_ticks_t
mosaic_tessellate_lines (cairo_t *cr, int width, int height)
{
    return mosaic_perform (cr, MOSAIC_TESSELLATE | MOSAIC_LINE_TO, width, height);
}
Exemple #3
0
static cairo_perf_ticks_t
mosaic_fill_lines (cairo_t *cr, int width, int height, int loops)
{
    return mosaic_perform (cr, MOSAIC_FILL | MOSAIC_LINE_TO, width, height, loops);
}
Exemple #4
0
static cairo_perf_ticks_t
mosaic_fill_curves (cairo_t *cr, int width, int height)
{
    return mosaic_perform (cr, MOSAIC_FILL | MOSAIC_CURVE_TO, width, height);
}