SoWin::doIdleTasks() - magic-lantern-studio/mle-documentation GitHub Wiki
Magic Lantern extension for SoWin.
// Added to support Magic Lantern MainLoop processing.
void SoWin::doIdleTasks(void)
{ SoWinP::doIdleTasks(); }
Also added the following to SoGui.h.in for shared, common source in sogui submodule repository.
#ifdef __COIN_SOWIN__
public:
static int haveIdleTasks(void);
static void doIdleTasks(void);
#endif // __COIN_SOWIN__