Flutter Engine
The Flutter Engine
Static Public Member Functions | List of all members
SerializationUtils< SkPath > Struct Reference

Static Public Member Functions

static void Write (SkWriteBuffer &writer, const SkPath *path)
 
static void Read (SkReadBuffer &reader, SkPath *path)
 

Detailed Description

Definition at line 108 of file SerializationTest.cpp.

Member Function Documentation

◆ Read()

static void SerializationUtils< SkPath >::Read ( SkReadBuffer reader,
SkPath path 
)
inlinestatic

Definition at line 112 of file SerializationTest.cpp.

112 {
113 reader.readPath(path);
114 }
void readPath(SkPath *path)
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
Definition: switches.h:57

◆ Write()

static void SerializationUtils< SkPath >::Write ( SkWriteBuffer writer,
const SkPath path 
)
inlinestatic

Definition at line 109 of file SerializationTest.cpp.

109 {
110 writer.writePath(*path);
111 }
virtual void writePath(const SkPath &path)=0

The documentation for this struct was generated from the following file: