Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
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 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 2555 of file DMSrcSink.cpp.

2555 {
2556 auto size = src.size();
2557 Result result = draw_to_canvas(fSink.get(), bitmap, stream, log, size,
2558 [&](SkCanvas* canvas, Src::GraphiteTestContext* testContext) {
2559 SkPictureRecorder recorder;
2560 sk_sp<SkPicture> pic;
2561 Result result = src.draw(recorder.beginRecording(SkIntToScalar(size.width()),
2562 SkIntToScalar(size.height())),
2563 testContext);
2564 if (!result.isOk()) {
2565 return result;
2566 }
2567 pic = recorder.finishRecordingAsPicture();
2568 canvas->drawPicture(pic);
2569 return result;
2570 });
2571 if (!result.isOk()) {
2572 return result;
2573 }
2574
2575 return check_against_reference(bitmap, src, fSink.get());
2576}
std::unique_ptr< Sink > fSink
Definition DMSrcSink.h:643
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)
static Result check_against_reference(const SkBitmap *bitmap, const Src &src, Sink *sink)
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: