Flutter Engine
The Flutter Engine
Public Member Functions | List of all members
DM::ViaPicture Class Reference

#include <DMSrcSink.h>

Inheritance diagram for DM::ViaPicture:
DM::Via DM::Sink

Public Member Functions

 ViaPicture (Sink *sink)
 
Result draw (const Src &, SkBitmap *, SkWStream *, SkString *) const override
 
- Public Member Functions inherited from DM::Via
 Via (Sink *sink)
 
const char * fileExtension () const override
 
bool serial () const override
 
SinkFlags flags () const override
 
void setColorSpace (sk_sp< SkColorSpace > colorSpace) override
 
- Public Member Functions inherited from DM::Sink
virtual ~Sink ()
 
virtual Result draw (const Src &, SkBitmap *, SkWStream *, SkString *log) const =0
 
virtual void setColorSpace (sk_sp< SkColorSpace >)
 
virtual bool serial () const
 
virtual const char * fileExtension () const =0
 
virtual SinkFlags flags () const =0
 
virtual SkColorInfo colorInfo () const
 

Additional Inherited Members

- Protected Attributes inherited from DM::Via
std::unique_ptr< SinkfSink
 

Detailed Description

Definition at line 670 of file DMSrcSink.h.

Constructor & Destructor Documentation

◆ ViaPicture()

DM::ViaPicture::ViaPicture ( Sink sink)
inlineexplicit

Definition at line 672 of file DMSrcSink.h.

672: Via(sink) {}
Via(Sink *sink)
Definition: DMSrcSink.h:631

Member Function Documentation

◆ draw()

Result DM::ViaPicture::draw ( const Src src,
SkBitmap bitmap,
SkWStream stream,
SkString log 
) const
overridevirtual

Implements DM::Sink.

Definition at line 2556 of file DMSrcSink.cpp.

2556 {
2557 auto size = src.size();
2558 Result result = draw_to_canvas(fSink.get(), bitmap, stream, log, size,
2559 [&](SkCanvas* canvas, Src::GraphiteTestContext* testContext) {
2560 SkPictureRecorder recorder;
2561 sk_sp<SkPicture> pic;
2562 Result result = src.draw(recorder.beginRecording(SkIntToScalar(size.width()),
2563 SkIntToScalar(size.height())),
2564 testContext);
2565 if (!result.isOk()) {
2566 return result;
2567 }
2568 pic = recorder.finishRecordingAsPicture();
2569 canvas->drawPicture(pic);
2570 return result;
2571 });
2572 if (!result.isOk()) {
2573 return result;
2574 }
2575
2576 return check_against_reference(bitmap, src, fSink.get());
2577}
std::unique_ptr< Sink > fSink
Definition: DMSrcSink.h:643
void drawPicture(const SkPicture *picture)
Definition: SkCanvas.h:1961
GAsyncResult * result
static void draw_to_canvas(SkCanvas *canvas, const SkImageInfo &info, void *pixels, size_t rowBytes, CodecSrc::DstColorType dstColorType, SkScalar left=0, SkScalar top=0)
Definition: DMSrcSink.cpp:456
static Result check_against_reference(const SkBitmap *bitmap, const Src &src, Sink *sink)
Definition: DMSrcSink.cpp:2449
Definition: bitmap.py:1
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259
skiatest::graphite::GraphiteTestContext GraphiteTestContext
Definition: DMSrcSink.h:93

The documentation for this class was generated from the following files: