Ignore:
Timestamp:
Mar 11, 2000, 10:05:07 AM (25 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/glut/glut_event.c

    r3022 r3079  
    1 /* $Id: glut_event.c,v 1.5 2000-03-05 10:19:38 jeroen Exp $ */
     1/* $Id: glut_event.c,v 1.6 2000-03-11 09:05:04 jeroen Exp $ */
    22/* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1997, 1998. */
    33
     
    321321processEventsAndTimeouts(void)
    322322{
     323  WriteLog("processEventsAndTimeouts() entry\n");
    323324  do {
    324325#if defined(_WIN32) || defined(__WIN32OS2__)
     
    826827#endif /* _WIN32 */
    827828    if (__glutTimerList) {
     829  WriteLog("processEventsAndTimeouts -> Calling handleTimeouts\n");
    828830      handleTimeouts();
     831  WriteLog("processEventsAndTimeouts -> Call handleTimeouts returned\n");
    829832    }
    830833  }
     
    931934  if (XPending(__glutDisplay)) {
    932935  immediatelyHandleXinput:
     936    WriteLog("waitForSmoething: Calling processEventsAndTimeouts\n");
    933937    processEventsAndTimeouts();
     938    WriteLog("waitForSmoething: Call processEventsAndTimeouts returned\n");
    934939  } else {
    935940    if (__glutTimerList)
     
    942947{
    943948  if (XPending(__glutDisplay)) {
     949    WriteLog("idleWait: Calling processEventsAndTimeouts\n");
    944950    processEventsAndTimeouts();
     951    WriteLog("idleWait: Call processEventsAndTimeouts returned\n");
    945952  } else {
    946953    if (__glutTimerList) {
     
    13711378        waitForSomething();
    13721379      } else {
     1380    WriteLog("glutMainLoop: Calling processEventsAndTimeouts\n");
    13731381        processEventsAndTimeouts();
     1382    WriteLog("glutMainLoop: Call processEventsAndTimeouts returned\n");
    13741383      }
    13751384    }
Note: See TracChangeset for help on using the changeset viewer.