Changeset 3000 for trunk/src/opengl


Ignore:
Timestamp:
Mar 4, 2000, 8:37:40 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

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:14 jeroen Exp $ */
     1/* $Id: glut_event.c,v 1.4 2000-03-04 19:33:43 jeroen Exp $ */
    22/* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1997, 1998. */
    33
     
    13331333  window->workMask &= ~(GLUT_DUMMY_WORK | GLUT_FINISH_WORK | GLUT_DEBUG_WORK);
    13341334
    1335     WriteLog("GLUT32: processWindowWorkList -> will now return!\n");
    1336 
    13371335  if (window->workMask) {
    13381336    /* Leave on work list. */
     
    13481346glutMainLoop(void)
    13491347{
    1350   WriteLog("GLUT32 MainLoop entered\n");
    13511348#if !defined(_WIN32) && !defined(__WIN32OS2__)
    13521349  if (!__glutDisplay)
     
    13571354      "main loop entered with no windows created.");
    13581355  for (;;) {
    1359     WriteLog("GLUT32 --> LOOP in!\n");
    13601356    if (__glutWindowWorkList) {
    13611357      GLUTwindow *remainder, *work;
     
    13771373        waitForSomething();
    13781374      } else {
    1379     WriteLog("Calling processEventsAndTimeouts from #1403\n");
    13801375        processEventsAndTimeouts();
    1381     WriteLog("processEventsAndTimeouts from #1403 returned!\n");
    1382       }
    1383     }
    1384   }
    1385 
    1386     WriteLog("MainLoop ended... ???\n");
     1376      }
     1377    }
     1378  }
    13871379}
    13881380/* ENDCENTRY */
  • trunk/src/opengl/glut/glut_win.c

    r2996 r3000  
    1 /* $Id: glut_win.c,v 1.3 2000-03-04 19:10:16 jeroen Exp $ */
     1/* $Id: glut_win.c,v 1.4 2000-03-04 19:33:43 jeroen Exp $ */
    22/* Copyright (c) Mark J. Kilgard, 1994, 1997.  */
    33
     
    10251025glutReshapeFunc(GLUTreshapeCB reshapeFunc)
    10261026{
    1027   WriteLog("GLUT32: Setting reshapeFunc to @%08X\n",reshapeFunc);
    10281027  if (reshapeFunc) {
    10291028    __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:16 jeroen Exp $ */
     1/* $Id: glut_winmisc.c,v 1.4 2000-03-04 19:33:43 jeroen Exp $ */
    22/* Copyright (c) Mark J. Kilgard, 1994.  */
    33
     
    6666glutReshapeWindow(int w, int h)
    6767{
    68   WriteLog("glutReshapeWindow (glut_winmisc)\n");
    6968  IGNORE_IN_GAME_MODE();
    7069  if (w <= 0 || h <= 0)
Note: See TracChangeset for help on using the changeset viewer.