Flutter Engine
The Flutter Engine
Public Member Functions | Static Public Attributes | List of all members
flutter::NopCuller Class Referencefinal
Inheritance diagram for flutter::NopCuller:
flutter::Culler

Public Member Functions

 ~NopCuller ()=default
 
bool init (DispatchContext &context) override
 
void update (DispatchContext &context) override
 
- Public Member Functions inherited from flutter::Culler
virtual ~Culler ()=default
 
virtual bool init (DispatchContext &context)=0
 
virtual void update (DispatchContext &context)=0
 

Static Public Attributes

static NopCuller instance = NopCuller()
 

Detailed Description

Definition at line 79 of file display_list.cc.

Constructor & Destructor Documentation

◆ ~NopCuller()

flutter::NopCuller::~NopCuller ( )
default

Member Function Documentation

◆ init()

bool flutter::NopCuller::init ( DispatchContext context)
inlineoverridevirtual

Implements flutter::Culler.

Definition at line 85 of file display_list.cc.

85 {
86 // Setting next_render_index to 0 means that
87 // all rendering ops will be at or after that
88 // index so they will execute and all restore
89 // indices will be after it as well so all
90 // clip and transform operations will execute.
91 context.next_render_index = 0;
92 return true;
93 }

◆ update()

void flutter::NopCuller::update ( DispatchContext context)
inlineoverridevirtual

Implements flutter::Culler.

Definition at line 94 of file display_list.cc.

94{}

Member Data Documentation

◆ instance

NopCuller flutter::NopCuller::instance = NopCuller()
static

Definition at line 81 of file display_list.cc.


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