Home | History | Annotate | Download | only in tabs

Lines Matching defs:cairo_context

1719   cairo_t* cairo_context = gdk_cairo_create(container->window);
1720 if (!cairo_context)
1726 cairo_scale(cairo_context, static_cast<double>(drop_indicator_width),
1728 cairo_set_source_rgba(cairo_context, 1.0f, 1.0f, 1.0f, 0.0f);
1729 cairo_set_operator(cairo_context, CAIRO_OPERATOR_SOURCE);
1730 cairo_paint(cairo_context);
1731 cairo_destroy(cairo_context);
1742 cairo_t* cairo_context = gdk_cairo_create(GDK_DRAWABLE(pixmap));
1745 cairo_set_source_rgba(cairo_context, 1, 1, 1, 0);
1749 cairo_set_operator(cairo_context, CAIRO_OPERATOR_SOURCE);
1750 gdk_cairo_set_source_pixbuf(cairo_context, drop_arrow, 0, 0);
1751 cairo_paint(cairo_context);
1752 cairo_destroy(cairo_context);