mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Do not heap allocate during LSPClientPlugin::drawTop.
This commit is contained in:
@@ -405,16 +405,17 @@ class EE_API Node : public Transformable {
|
||||
Uint32 getNodeOfTypeIndex() const;
|
||||
|
||||
void runOnMainThread( Actions::Runnable::RunnableFunc runnable,
|
||||
const Time& delay = Seconds( 0 ), const Uint32& uniqueIdentifier = 0 );
|
||||
const Time& delay = Seconds( 0 ),
|
||||
const Action::UniqueID& uniqueIdentifier = 0 );
|
||||
|
||||
void setTimeout( Actions::Runnable::RunnableFunc runnable, const Time& delay = Seconds( 0 ),
|
||||
const Uint32& uniqueIdentifier = 0 );
|
||||
const Action::UniqueID& uniqueIdentifier = 0 );
|
||||
|
||||
void debounce( Actions::Runnable::RunnableFunc runnable, const Time& delay,
|
||||
const Uint32& uniqueIdentifier );
|
||||
const Action::UniqueID& uniqueIdentifier );
|
||||
|
||||
void setInterval( Actions::Runnable::RunnableFunc runnable, const Time& interval,
|
||||
const Uint32& uniqueIdentifier = 0 );
|
||||
const Action::UniqueID& uniqueIdentifier = 0 );
|
||||
|
||||
bool isChild( Node* child ) const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user