Home | History | Annotate | Download | only in dm

Lines Matching refs:Sink

1667 sink is disabled.");
1694 // passing the Sink draw() arguments, a size, and a function draws into an SkCanvas.
1698 static Error draw_to_canvas(Sink* sink, SkBitmap* bitmap, SkWStream* stream, SkString* log,
1710 return sink->draw(ProxySrc(size, draw), bitmap, stream, log);
1717 // Is *bitmap identical to what you get drawing src into sink?
1718 static Error check_against_reference(const SkBitmap* bitmap, const Src& src, Sink* sink) {
1725 Error err = sink->draw(src, &reference, &wStream, &log);
1726 // If we can draw into this Sink via some pipeline, we should be able to draw directly.
1745 ViaMatrix::ViaMatrix(SkMatrix matrix, Sink* sink) : Via(sink), fMatrix(matrix) {}
1758 ViaUpright::ViaUpright(SkMatrix matrix, Sink* sink) : Via(sink), fMatrix(matrix) {}
1820 ViaTiles::ViaTiles(int w, int h, SkBBHFactory* factory, Sink* sink)
1821 : Via(sink)
1847 // This lets our ultimate Sink determine the best kind of surface.
1873 ViaDDL::ViaDDL(int numReplays, int numDivisions, Sink* sink)
1874 : Via(sink), fNumReplays(numReplays), fNumDivisions(numDivisions) {}
2018 ViaCSXform::ViaCSXform(Sink* sink, sk_sp<SkColorSpace> cs, bool colorSpin)
2019 : Via(sink)