Changeset 3000 for trunk/src/opengl/glut
- Timestamp:
- Mar 4, 2000, 8:37:40 PM (25 years ago)
- Location:
- trunk/src/opengl/glut
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glut/glut_event.c
r2996 r3000 1 /* $Id: glut_event.c,v 1. 3 2000-03-04 19:10:14jeroen Exp $ */1 /* $Id: glut_event.c,v 1.4 2000-03-04 19:33:43 jeroen Exp $ */ 2 2 /* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1997, 1998. */ 3 3 … … 1333 1333 window->workMask &= ~(GLUT_DUMMY_WORK | GLUT_FINISH_WORK | GLUT_DEBUG_WORK); 1334 1334 1335 WriteLog("GLUT32: processWindowWorkList -> will now return!\n");1336 1337 1335 if (window->workMask) { 1338 1336 /* Leave on work list. */ … … 1348 1346 glutMainLoop(void) 1349 1347 { 1350 WriteLog("GLUT32 MainLoop entered\n");1351 1348 #if !defined(_WIN32) && !defined(__WIN32OS2__) 1352 1349 if (!__glutDisplay) … … 1357 1354 "main loop entered with no windows created."); 1358 1355 for (;;) { 1359 WriteLog("GLUT32 --> LOOP in!\n");1360 1356 if (__glutWindowWorkList) { 1361 1357 GLUTwindow *remainder, *work; … … 1377 1373 waitForSomething(); 1378 1374 } else { 1379 WriteLog("Calling processEventsAndTimeouts from #1403\n");1380 1375 processEventsAndTimeouts(); 1381 WriteLog("processEventsAndTimeouts from #1403 returned!\n"); 1382 } 1383 } 1384 } 1385 1386 WriteLog("MainLoop ended... ???\n"); 1376 } 1377 } 1378 } 1387 1379 } 1388 1380 /* ENDCENTRY */ -
trunk/src/opengl/glut/glut_win.c
r2996 r3000 1 /* $Id: glut_win.c,v 1. 3 2000-03-04 19:10:16jeroen Exp $ */1 /* $Id: glut_win.c,v 1.4 2000-03-04 19:33:43 jeroen Exp $ */ 2 2 /* Copyright (c) Mark J. Kilgard, 1994, 1997. */ 3 3 … … 1025 1025 glutReshapeFunc(GLUTreshapeCB reshapeFunc) 1026 1026 { 1027 WriteLog("GLUT32: Setting reshapeFunc to @%08X\n",reshapeFunc);1028 1027 if (reshapeFunc) { 1029 1028 __glutCurrentWindow->reshape = reshapeFunc; -
trunk/src/opengl/glut/glut_winmisc.c
r2996 r3000 1 /* $Id: glut_winmisc.c,v 1. 3 2000-03-04 19:10:16jeroen Exp $ */1 /* $Id: glut_winmisc.c,v 1.4 2000-03-04 19:33:43 jeroen Exp $ */ 2 2 /* Copyright (c) Mark J. Kilgard, 1994. */ 3 3 … … 66 66 glutReshapeWindow(int w, int h) 67 67 { 68 WriteLog("glutReshapeWindow (glut_winmisc)\n");69 68 IGNORE_IN_GAME_MODE(); 70 69 if (w <= 0 || h <= 0)
Note:
See TracChangeset
for help on using the changeset viewer.