Changeset 3080 for trunk/src/opengl/glut
- Timestamp:
- Mar 11, 2000, 10:09:55 AM (25 years ago)
- 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:04jeroen Exp $ */1 /* $Id: glut_event.c,v 1.7 2000-03-11 09:07:12 jeroen Exp $ */ 2 2 /* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1997, 1998. */ 3 3 … … 321 321 processEventsAndTimeouts(void) 322 322 { 323 WriteLog("processEventsAndTimeouts() entry\n");324 323 do { 325 324 #if defined(_WIN32) || defined(__WIN32OS2__) … … 827 826 #endif /* _WIN32 */ 828 827 if (__glutTimerList) { 829 WriteLog("processEventsAndTimeouts -> Calling handleTimeouts\n");830 828 handleTimeouts(); 831 WriteLog("processEventsAndTimeouts -> Call handleTimeouts returned\n");832 829 } 833 830 } … … 934 931 if (XPending(__glutDisplay)) { 935 932 immediatelyHandleXinput: 936 WriteLog("waitForSmoething: Calling processEventsAndTimeouts\n");937 933 processEventsAndTimeouts(); 938 WriteLog("waitForSmoething: Call processEventsAndTimeouts returned\n");939 934 } else { 940 935 if (__glutTimerList) … … 947 942 { 948 943 if (XPending(__glutDisplay)) { 949 WriteLog("idleWait: Calling processEventsAndTimeouts\n");950 944 processEventsAndTimeouts(); 951 WriteLog("idleWait: Call processEventsAndTimeouts returned\n");952 945 } else { 953 946 if (__glutTimerList) { … … 1378 1371 waitForSomething(); 1379 1372 } else { 1380 WriteLog("glutMainLoop: Calling processEventsAndTimeouts\n");1381 1373 processEventsAndTimeouts(); 1382 WriteLog("glutMainLoop: Call processEventsAndTimeouts returned\n");1383 1374 } 1384 1375 }
Note:
See TracChangeset
for help on using the changeset viewer.