예제 #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);
}
예제 #2
0
파일: mosaic.c 프로젝트: AliYousuf/cairo
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);
}
예제 #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);
}
예제 #4
0
파일: mosaic.c 프로젝트: AliYousuf/cairo
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);
}