SoWin::haveIdleTasks() - magic-lantern-studio/mle-documentation GitHub Wiki

Magic Lantern extension for SoWin.


    // Added to support Magic Lantern MainLoop processing.
    int SoWin::haveIdleTasks(void)
    { return (SoWinP::idleSensorId != 0); }

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__