Flutter Engine
The Flutter Engine
Classes | Public Member Functions | Public Attributes | List of all members
skgpu::ganesh::PathTessellator::PathDrawList Struct Reference

#include <PathTessellator.h>

Classes

struct  Iter
 

Public Member Functions

 PathDrawList (const SkMatrix &pathMatrix, const SkPath &path, const SkPMColor4f &color, PathDrawList *next=nullptr)
 
Iter begin () const
 
Iter end () const
 

Public Attributes

SkMatrix fPathMatrix
 
SkPath fPath
 
SkPMColor4f fColor
 
PathDrawListfNext
 

Detailed Description

Definition at line 30 of file PathTessellator.h.

Constructor & Destructor Documentation

◆ PathDrawList()

skgpu::ganesh::PathTessellator::PathDrawList::PathDrawList ( const SkMatrix pathMatrix,
const SkPath path,
const SkPMColor4f color,
PathDrawList next = nullptr 
)
inline

Definition at line 31 of file PathTessellator.h.

35 : fPathMatrix(pathMatrix), fPath(path), fColor(color), fNext(next) {}
static float next(float f)
DlColor color
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

Member Function Documentation

◆ begin()

Iter skgpu::ganesh::PathTessellator::PathDrawList::begin ( ) const
inline

Definition at line 50 of file PathTessellator.h.

50{ return {this}; }

◆ end()

Iter skgpu::ganesh::PathTessellator::PathDrawList::end ( ) const
inline

Definition at line 51 of file PathTessellator.h.

51{ return {nullptr}; }

Member Data Documentation

◆ fColor

SkPMColor4f skgpu::ganesh::PathTessellator::PathDrawList::fColor

Definition at line 39 of file PathTessellator.h.

◆ fNext

PathDrawList* skgpu::ganesh::PathTessellator::PathDrawList::fNext

Definition at line 40 of file PathTessellator.h.

◆ fPath

SkPath skgpu::ganesh::PathTessellator::PathDrawList::fPath

Definition at line 38 of file PathTessellator.h.

◆ fPathMatrix

SkMatrix skgpu::ganesh::PathTessellator::PathDrawList::fPathMatrix

Definition at line 37 of file PathTessellator.h.


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