Lines Matching defs:ct
127 cairo_t *ct = gdk_cairo_create(gtk_widget_get_window (widget));
128 cairo_rectangle(ct, event->area.x, event->area.y,
130 cairo_clip(ct);
133 cairo_translate(ct, allocation.x, allocation.y);
134 result = sp_gradient_image_draw(widget, ct);
135 cairo_destroy(ct);
142 static gboolean sp_gradient_image_draw(GtkWidget *widget, cairo_t *ct)
150 cairo_set_source(ct, check);
151 cairo_paint(ct);
156 cairo_set_source(ct, p);
157 cairo_paint(ct);
178 cairo_t *ct = cairo_create(s);
181 cairo_set_source(ct, check);
182 cairo_paint(ct);
187 cairo_set_source(ct, p);
188 cairo_paint(ct);
192 cairo_destroy(ct);