Flutter Engine
The Flutter Engine
Public Member Functions | Public Attributes | List of all members
SkScalerContextEffects Struct Reference

#include <SkScalerContext.h>

Public Member Functions

 SkScalerContextEffects ()
 
 SkScalerContextEffects (SkPathEffect *pe, SkMaskFilter *mf)
 
 SkScalerContextEffects (const SkPaint &paint)
 

Public Attributes

SkPathEffectfPathEffect
 
SkMaskFilterfMaskFilter
 

Detailed Description

Definition at line 240 of file SkScalerContext.h.

Constructor & Destructor Documentation

◆ SkScalerContextEffects() [1/3]

SkScalerContextEffects::SkScalerContextEffects ( )
inline

Definition at line 241 of file SkScalerContext.h.

241: fPathEffect(nullptr), fMaskFilter(nullptr) {}
SkPathEffect * fPathEffect
SkMaskFilter * fMaskFilter

◆ SkScalerContextEffects() [2/3]

SkScalerContextEffects::SkScalerContextEffects ( SkPathEffect pe,
SkMaskFilter mf 
)
inline

Definition at line 242 of file SkScalerContext.h.

243 : fPathEffect(pe), fMaskFilter(mf) {}

◆ SkScalerContextEffects() [3/3]

SkScalerContextEffects::SkScalerContextEffects ( const SkPaint paint)
inlineexplicit

Definition at line 244 of file SkScalerContext.h.

245 : fPathEffect(paint.getPathEffect())
246 , fMaskFilter(paint.getMaskFilter()) {}
const Paint & paint
Definition: color_source.cc:38

Member Data Documentation

◆ fMaskFilter

SkMaskFilter* SkScalerContextEffects::fMaskFilter

Definition at line 249 of file SkScalerContext.h.

◆ fPathEffect

SkPathEffect* SkScalerContextEffects::fPathEffect

Definition at line 248 of file SkScalerContext.h.


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