Home | History | Annotate | Download | only in dm

Lines Matching refs:Sink

1433     return Error("SVG sink is disabled.");
1461 // passing the Sink draw() arguments, a size, and a function draws into an SkCanvas.
1465 static Error draw_to_canvas(Sink* sink, SkBitmap* bitmap, SkWStream* stream, SkString* log,
1477 return sink->draw(ProxySrc(size, draw), bitmap, stream, log);
1484 // Is *bitmap identical to what you get drawing src into sink?
1485 static Error check_against_reference(const SkBitmap* bitmap, const Src& src, Sink* sink) {
1492 Error err = sink->draw(src, &reference, &wStream, &log);
1493 // If we can draw into this Sink via some pipeline, we should be able to draw directly.
1520 ViaMatrix::ViaMatrix(SkMatrix matrix, Sink* sink) : Via(sink), fMatrix(matrix) {}
1533 ViaUpright::ViaUpright(SkMatrix matrix, Sink* sink) : Via(sink), fMatrix(matrix) {}
1591 ViaTiles::ViaTiles(int w, int h, SkBBHFactory* factory, Sink* sink)
1592 : Via(sink)
1618 // This lets our ultimate Sink determine the best kind of surface.
1688 // Draw the Src into two pictures, then draw the second picture into the wrapped Sink.
1789 // Then play back that macro picture into our wrapped sink.
1846 ViaCSXform::ViaCSXform(Sink* sink, sk_sp<SkColorSpace> cs, bool colorSpin)
1847 : Via(sink)