Searched defs:xct (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/display/
H A Dsp-canvas.cpp1591 //cairo_t *xct = gdk_cairo_create(gtk_widget_get_window (widget));
1592 cairo_t *xct = cairo_create(_backing_store); local
1593 cairo_translate(xct, paint_rect.left() - _x0, paint_rect.top() - _y0);
1594 cairo_rectangle(xct, 0, 0, paint_rect.width(), paint_rect.height());
1595 cairo_clip(xct);
1596 cairo_set_source_surface(xct, imgs, 0, 0);
1597 cairo_set_operator(xct, CAIRO_OPERATOR_SOURCE);
1598 cairo_paint(xct);
1599 cairo_destroy(xct);

Completed in 21 milliseconds