Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
flutter::ImageFilterMutation Class Reference

#include <embedded_views.h>

Public Member Functions

 ImageFilterMutation (std::shared_ptr< const DlImageFilter > filter, const SkRect &filter_rect)
 
const DlImageFilterGetFilter () const
 
const SkRectGetFilterRect () const
 
bool operator== (const ImageFilterMutation &other) const
 
bool operator!= (const ImageFilterMutation &other) const
 

Detailed Description

Definition at line 51 of file embedded_views.h.

Constructor & Destructor Documentation

◆ ImageFilterMutation()

flutter::ImageFilterMutation::ImageFilterMutation ( std::shared_ptr< const DlImageFilter filter,
const SkRect filter_rect 
)
inline

Definition at line 53 of file embedded_views.h.

55 : filter_(std::move(filter)), filter_rect_(filter_rect) {}

Member Function Documentation

◆ GetFilter()

const DlImageFilter & flutter::ImageFilterMutation::GetFilter ( ) const
inline

Definition at line 57 of file embedded_views.h.

57{ return *filter_; }

◆ GetFilterRect()

const SkRect & flutter::ImageFilterMutation::GetFilterRect ( ) const
inline

Definition at line 58 of file embedded_views.h.

58{ return filter_rect_; }

◆ operator!=()

bool flutter::ImageFilterMutation::operator!= ( const ImageFilterMutation other) const
inline

Definition at line 64 of file embedded_views.h.

64 {
65 return !operator==(other);
66 }
bool operator==(const ImageFilterMutation &other) const

◆ operator==()

bool flutter::ImageFilterMutation::operator== ( const ImageFilterMutation other) const
inline

Definition at line 60 of file embedded_views.h.

60 {
61 return *filter_ == *other.filter_ && filter_rect_ == other.filter_rect_;
62 }

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