Lines Matching refs:Sink
1493 return Error("SVG sink is disabled.");
1519 // passing the Sink draw() arguments, a size, and a function draws into an SkCanvas.
1523 static Error draw_to_canvas(Sink* sink, SkBitmap* bitmap, SkWStream* stream, SkString* log,
1535 return sink->draw(ProxySrc(size, draw), bitmap, stream, log);
1542 // Is *bitmap identical to what you get drawing src into sink?
1543 static Error check_against_reference(const SkBitmap* bitmap, const Src& src, Sink* sink) {
1550 Error err = sink->draw(src, &reference, &wStream, &log);
1551 // If we can draw into this Sink via some pipeline, we should be able to draw directly.
1578 ViaMatrix::ViaMatrix(SkMatrix matrix, Sink* sink) : Via(sink), fMatrix(matrix) {}
1591 ViaUpright::ViaUpright(SkMatrix matrix, Sink* sink) : Via(sink), fMatrix(matrix) {}
1648 ViaTiles::ViaTiles(int w, int h, SkBBHFactory* factory, Sink* sink)
1649 : Via(sink)
1675 // This lets our ultimate Sink determine the best kind of surface.
1745 // Draw the Src into two pictures, then draw the second picture into the wrapped Sink.
1846 // Then play back that macro picture into our wrapped sink.
1903 ViaCSXform::ViaCSXform(Sink* sink, sk_sp<SkColorSpace> cs, bool colorSpin)
1904 : Via(sink)