Flutter Engine
The Flutter Engine
Classes | Public Member Functions | List of all members
SkPicturePlayback Class Referencefinal

#include <SkPicturePlayback.h>

Inheritance diagram for SkPicturePlayback:
SkNoncopyable

Public Member Functions

 SkPicturePlayback (const SkPictureData *data)
 
void draw (SkCanvas *canvas, SkPicture::AbortCallback *, SkReadBuffer *buffer)
 
size_t curOpID () const
 
void resetOpID ()
 

Detailed Description

Definition at line 24 of file SkPicturePlayback.h.

Constructor & Destructor Documentation

◆ SkPicturePlayback()

SkPicturePlayback::SkPicturePlayback ( const SkPictureData data)
inline

Definition at line 26 of file SkPicturePlayback.h.

27 : fPictureData(data)
28 , fCurOffset(0) {
29 }
std::shared_ptr< const fml::Mapping > data
Definition: texture_gles.cc:63

Member Function Documentation

◆ curOpID()

size_t SkPicturePlayback::curOpID ( ) const
inline

Definition at line 36 of file SkPicturePlayback.h.

36{ return fCurOffset; }

◆ draw()

void SkPicturePlayback::draw ( SkCanvas canvas,
SkPicture::AbortCallback callback,
SkReadBuffer buffer 
)

Definition at line 60 of file SkPicturePlayback.cpp.

62 {
63 AutoResetOpID aroi(this);
64 SkASSERT(0 == fCurOffset);
65
66 SkReadBuffer reader(fPictureData->opData()->bytes(),
67 fPictureData->opData()->size());
68 reader.setVersion(fPictureData->info().getVersion());
69
70 // Record this, so we can concat w/ it if we encounter a setMatrix()
71 SkM44 initialMatrix = canvas->getLocalToDevice();
72
73 SkAutoCanvasRestore acr(canvas, false);
74
75 while (!reader.eof() && reader.isValid()) {
76 if (callback && callback->abort()) {
77 return;
78 }
79
80 fCurOffset = reader.offset();
81
82 uint32_t bits = reader.readInt();
83 uint32_t op = bits >> 24,
84 size = bits & 0xffffff;
85 if (size == 0xffffff) {
86 size = reader.readInt();
87 }
88
89 if (!reader.validate(size > 0 && op > UNUSED && op <= LAST_DRAWTYPE_ENUM)) {
90 return;
91 }
92
93 this->handleOp(&reader, (DrawType)op, size, canvas, initialMatrix);
94 }
95
96 // need to propagate invalid state to the parent reader
97 if (buffer) {
98 buffer->validate(reader.isValid());
99 }
100}
#define SkASSERT(cond)
Definition: SkAssert.h:116
@ LAST_DRAWTYPE_ENUM
@ UNUSED
Definition: SkPictureFlat.h:33
SkM44 getLocalToDevice() const
Definition: SkCanvas.cpp:1633
const uint8_t * bytes() const
Definition: SkData.h:43
size_t size() const
Definition: SkData.h:30
Definition: SkM44.h:150
const sk_sp< SkData > & opData() const
const SkPictInfo & info() const
FlKeyEvent uint64_t FlKeyResponderAsyncCallback callback
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126
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
uint32_t getVersion() const
Definition: SkPictureData.h:43

◆ resetOpID()

void SkPicturePlayback::resetOpID ( )
inline

Definition at line 37 of file SkPicturePlayback.h.

37{ fCurOffset = 0; }

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