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

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