HomeSort by relevance Sort by last modified time
    Searched refs:copy_cr (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/ui/gtk/
cairo_cached_surface.cc 67 cairo_t* copy_cr = cairo_create(surface_); local
68 gdk_cairo_set_source_pixbuf(copy_cr, pixbuf_, 0, 0);
69 cairo_paint(copy_cr);
70 cairo_destroy(copy_cr);
browser_toolbar_gtk.cc 516 cairo_t* copy_cr = cairo_create(target); local
518 cairo_set_operator(copy_cr, CAIRO_OPERATOR_SOURCE);
522 left_corner->SetSource(copy_cr, left.x(), left.y());
523 cairo_paint(copy_cr);
528 right_corner->SetSource(copy_cr, right.x(), right.y());
531 cairo_rectangle(copy_cr, right.x(), right.y(),
533 cairo_fill(copy_cr);
538 background->SetSource(copy_cr, tabstrip_origin.x(), tabstrip_origin.y());
539 cairo_set_operator(copy_cr, CAIRO_OPERATOR_IN);
540 cairo_pattern_set_extend(cairo_get_source(copy_cr), CAIRO_EXTEND_REPEAT)
    [all...]
  /external/chromium_org/ui/gfx/image/
cairo_cached_surface.cc 100 cairo_t* copy_cr = cairo_create(out); local
101 gdk_cairo_set_source_pixbuf(copy_cr, pixbuf_, 0, 0);
102 cairo_paint(copy_cr);
103 cairo_destroy(copy_cr);
  /external/chromium_org/chrome/browser/ui/gtk/
browser_toolbar_gtk.cc 564 cairo_t* copy_cr = cairo_create(target); local
568 cairo_set_operator(copy_cr, CAIRO_OPERATOR_SOURCE);
571 SetSource(copy_cr, widget, left.x(), left.y());
572 cairo_paint(copy_cr);
576 SetSource(copy_cr, widget, right.x(), right.y());
579 cairo_rectangle(copy_cr, right.x(), right.y(),
581 cairo_fill(copy_cr);
586 background.ToCairo()->SetSource(copy_cr, widget,
588 cairo_set_operator(copy_cr, CAIRO_OPERATOR_IN);
589 cairo_pattern_set_extend(cairo_get_source(copy_cr), CAIRO_EXTEND_REPEAT)
    [all...]

Completed in 3161 milliseconds