MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / add

Method add

modules/gui/gui/src/framework/timer_manager.cpp:67–74  ·  view source on GitHub ↗

add/remove

Source from the content-addressed store, hash-verified

65
66// add/remove
67TimerHandle TimerManager::add(Timer timer)
68{
69 return _timers.add({ std::move(timer),
70 _cur_time_stamp,
71 -1,
72 0 })
73 .index();
74}
75void TimerManager::remove(TimerHandle handle)
76{
77 return _timers.remove_at(handle);

Callers 12

get_pipelineMethod · 0.45
_prepare_draw_dataMethod · 0.45
create_windowMethod · 0.45
schedule_build_forMethod · 0.45
schedule_layout_forMethod · 0.45
schedule_paint_forMethod · 0.45
first_mountMethod · 0.45
_update_childrenMethod · 0.45
add_childMethod · 0.45
hit_testMethod · 0.45
hit_testMethod · 0.45

Calls 2

moveFunction · 0.50
indexMethod · 0.45

Tested by 1

hit_testMethod · 0.36