#include <embedded_views.h>
Definition at line 79 of file embedded_views.h.
◆ Mutator() [1/7]
flutter::Mutator::Mutator |
( |
const Mutator & |
other | ) |
|
|
inline |
Definition at line 81 of file embedded_views.h.
81 {
82 type_ = other.type_;
83 switch (other.type_) {
86 break;
89 break;
92 break;
95 break;
98 break;
100 filter_mutation_ = other.filter_mutation_;
101 break;
102 default:
103 break;
104 }
105 }
◆ Mutator() [2/7]
flutter::Mutator::Mutator |
( |
const SkRect & |
rect | ) |
|
|
inlineexplicit |
◆ Mutator() [3/7]
flutter::Mutator::Mutator |
( |
const SkRRect & |
rrect | ) |
|
|
inlineexplicit |
◆ Mutator() [4/7]
flutter::Mutator::Mutator |
( |
const SkPath & |
path | ) |
|
|
inlineexplicit |
Definition at line 109 of file embedded_views.h.
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
◆ Mutator() [5/7]
flutter::Mutator::Mutator |
( |
const SkMatrix & |
matrix | ) |
|
|
inlineexplicit |
Definition at line 111 of file embedded_views.h.
unsigned useCenter Optional< SkMatrix > matrix
◆ Mutator() [6/7]
flutter::Mutator::Mutator |
( |
const int & |
alpha | ) |
|
|
inlineexplicit |
◆ Mutator() [7/7]
flutter::Mutator::Mutator |
( |
const std::shared_ptr< const DlImageFilter > & |
filter, |
|
|
const SkRect & |
filter_rect |
|
) |
| |
|
inlineexplicit |
Definition at line 114 of file embedded_views.h.
117 filter_mutation_(
118 std::make_shared<ImageFilterMutation>(filter, filter_rect)) {}
◆ ~Mutator()
flutter::Mutator::~Mutator |
( |
| ) |
|
|
inline |
◆ GetAlpha()
const int & flutter::Mutator::GetAlpha |
( |
| ) |
const |
|
inline |
◆ GetAlphaFloat()
float flutter::Mutator::GetAlphaFloat |
( |
| ) |
const |
|
inline |
◆ GetFilterMutation()
◆ GetMatrix()
const SkMatrix & flutter::Mutator::GetMatrix |
( |
| ) |
const |
|
inline |
◆ GetPath()
const SkPath & flutter::Mutator::GetPath |
( |
| ) |
const |
|
inline |
◆ GetRect()
const SkRect & flutter::Mutator::GetRect |
( |
| ) |
const |
|
inline |
◆ GetRRect()
const SkRRect & flutter::Mutator::GetRRect |
( |
| ) |
const |
|
inline |
◆ GetType()
const MutatorType & flutter::Mutator::GetType |
( |
| ) |
const |
|
inline |
◆ IsClipType()
bool flutter::Mutator::IsClipType |
( |
| ) |
|
|
inline |
◆ operator!=()
bool flutter::Mutator::operator!= |
( |
const Mutator & |
other | ) |
const |
|
inline |
◆ operator==()
bool flutter::Mutator::operator== |
( |
const Mutator & |
other | ) |
const |
|
inline |
Definition at line 131 of file embedded_views.h.
131 {
132 if (type_ != other.type_) {
133 return false;
134 }
135 switch (type_) {
137 return rect_ == other.rect_;
139 return rrect_ == other.rrect_;
141 return *
path_ == *other.path_;
143 return matrix_ == other.matrix_;
145 return alpha_ == other.alpha_;
147 return *filter_mutation_ == *other.filter_mutation_;
148 }
149
150 return false;
151 }
◆ alpha_
int flutter::Mutator::alpha_ |
◆ matrix_
◆ path_
SkPath* flutter::Mutator::path_ |
◆ rect_
SkRect flutter::Mutator::rect_ |
◆ rrect_
The documentation for this class was generated from the following file: