Flutter Engine Uber Docs
Docs for the entire Flutter Engine repo.
 
Loading...
Searching...
No Matches
impeller::Canvas::RRectBlurShape Class Reference

Inherits impeller::Canvas::BlurShape.

Public Member Functions

 RRectBlurShape (const Rect &rect, Scalar corner_radius)
 
Rect GetBounds () const override
 
std::shared_ptr< SolidBlurContentsBuildBlurContent (Sigma sigma) override
 
const GeometryBuildDrawGeometry () override
 

Detailed Description

Definition at line 184 of file canvas.cc.

Constructor & Destructor Documentation

◆ RRectBlurShape()

impeller::Canvas::RRectBlurShape::RRectBlurShape ( const Rect rect,
Scalar  corner_radius 
)
inline

Definition at line 186 of file canvas.cc.

187 : rect_(rect), corner_radius_(corner_radius) {}

Member Function Documentation

◆ BuildBlurContent()

std::shared_ptr< SolidBlurContents > impeller::Canvas::RRectBlurShape::BuildBlurContent ( Sigma  sigma)
inlineoverride

Definition at line 191 of file canvas.cc.

191 {
192 auto contents = std::make_shared<SolidRRectBlurContents>();
193 contents->SetSigma(sigma);
194 contents->SetShape(rect_, corner_radius_);
195 return contents;
196 }

◆ BuildDrawGeometry()

const Geometry & impeller::Canvas::RRectBlurShape::BuildDrawGeometry ( )
inlineoverride

Definition at line 198 of file canvas.cc.

198 {
199 return geom_.emplace(rect_, Size(corner_radius_));
200 }
TSize< Scalar > Size
Definition size.h:159

◆ GetBounds()

Rect impeller::Canvas::RRectBlurShape::GetBounds ( ) const
inlineoverride

Definition at line 189 of file canvas.cc.

189{ return rect_; }

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