Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
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 }

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
SkM44 getLocalToDevice() const
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
static const uint8_t buffer[]
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

◆ 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: