Do not heap allocate during LSPClientPlugin::drawTop.

This commit is contained in:
Martín Lucas Golini
2024-11-21 01:33:32 -03:00
parent a74263af3d
commit 3001723a98
4 changed files with 40 additions and 29 deletions

View File

@@ -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;