Flutter Engine
 
Loading...
Searching...
No Matches
flutter::OpacityEntry Class Reference

Inherits flutter::LayerStateStack::StateEntry.

Public Member Functions

 OpacityEntry (const DlRect &bounds, DlScalar opacity, const LayerStateStack::RenderingAttributes &prev)
 
void apply (LayerStateStack *stack) const override
 
void restore (LayerStateStack *stack) const override
 
void update_mutators (MutatorsStack *mutators_stack) const override
 

Detailed Description

Definition at line 246 of file layer_state_stack.cc.

Constructor & Destructor Documentation

◆ OpacityEntry()

flutter::OpacityEntry::OpacityEntry ( const DlRect bounds,
DlScalar  opacity,
const LayerStateStack::RenderingAttributes &  prev 
)
inline

Definition at line 248 of file layer_state_stack.cc.

251 : bounds_(bounds),
252 opacity_(opacity),
253 old_opacity_(prev.opacity),
254 old_bounds_(prev.save_layer_bounds) {}

Member Function Documentation

◆ apply()

void flutter::OpacityEntry::apply ( LayerStateStack stack) const
inlineoverride

Definition at line 256 of file layer_state_stack.cc.

256 {
257 stack->outstanding_.save_layer_bounds = bounds_;
258 stack->outstanding_.opacity *= opacity_;
259 }

◆ restore()

void flutter::OpacityEntry::restore ( LayerStateStack stack) const
inlineoverride

Definition at line 260 of file layer_state_stack.cc.

260 {
261 stack->outstanding_.save_layer_bounds = old_bounds_;
262 stack->outstanding_.opacity = old_opacity_;
263 }

◆ update_mutators()

void flutter::OpacityEntry::update_mutators ( MutatorsStack mutators_stack) const
inlineoverride

Definition at line 264 of file layer_state_stack.cc.

264 {
265 mutators_stack->PushOpacity(DlColor::toAlpha(opacity_));
266 }
static uint8_t toAlpha(DlScalar opacity)
Definition dl_color.h:64

References flutter::MutatorsStack::PushOpacity(), and flutter::DlColor::toAlpha().


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