Changeset 3080 for trunk/src/opengl/glut


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

* empty log message *

File:
1 edited

Legend:

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

    r3079 r3080  
    1 /* $Id: glut_event.c,v 1.6 2000-03-11 09:05:04 jeroen Exp $ */
     1/* $Id: glut_event.c,v 1.7 2000-03-11 09:07:12 jeroen Exp $ */
    22/* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1997, 1998. */
    33
     
    321321processEventsAndTimeouts(void)
    322322{
    323   WriteLog("processEventsAndTimeouts() entry\n");
    324323  do {
    325324#if defined(_WIN32) || defined(__WIN32OS2__)
     
    827826#endif /* _WIN32 */
    828827    if (__glutTimerList) {
    829   WriteLog("processEventsAndTimeouts -> Calling handleTimeouts\n");
    830828      handleTimeouts();
    831   WriteLog("processEventsAndTimeouts -> Call handleTimeouts returned\n");
    832829    }
    833830  }
     
    934931  if (XPending(__glutDisplay)) {
    935932  immediatelyHandleXinput:
    936     WriteLog("waitForSmoething: Calling processEventsAndTimeouts\n");
    937933    processEventsAndTimeouts();
    938     WriteLog("waitForSmoething: Call processEventsAndTimeouts returned\n");
    939934  } else {
    940935    if (__glutTimerList)
     
    947942{
    948943  if (XPending(__glutDisplay)) {
    949     WriteLog("idleWait: Calling processEventsAndTimeouts\n");
    950944    processEventsAndTimeouts();
    951     WriteLog("idleWait: Call processEventsAndTimeouts returned\n");
    952945  } else {
    953946    if (__glutTimerList) {
     
    13781371        waitForSomething();
    13791372      } else {
    1380     WriteLog("glutMainLoop: Calling processEventsAndTimeouts\n");
    13811373        processEventsAndTimeouts();
    1382     WriteLog("glutMainLoop: Call processEventsAndTimeouts returned\n");
    13831374      }
    13841375    }
Note: See TracChangeset for help on using the changeset viewer.