[GEM-dev] Lua an GEM

Wesley Smith wesley.hoke at gmail.com
Wed Jan 16 05:12:41 CET 2008


This is basically what I was looking for although I still have to
follow it to see where it keads,

 1045 /////////////////////////////////////////////////////////
 1046 // stopRendering
 1047 //
 1048 /////////////////////////////////////////////////////////
 1049 void GemMan :: stopRendering()
 1050 {
 1051   if (!m_rendering) return;
 1052
 1053   m_rendering = 0;
 1054   clock_unset(s_clock);
 1055   s_hit = 1;
 1056
 1057   // clean out all of the gemheads
 1058   gemheadLink *head = s_linkHead;
 1059   while(head)
 1060     {
 1061       head->base->stopRendering();
 1062       head = head->next;
 1063     }
 1064
 1065   post("GEM: Stop rendering");
 1066 }
 1067



wes




More information about the GEM-dev mailing list