Changeset 3000


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

* empty log message *

Location:
trunk
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r2997 r3000  
    1  /* $Id: changelog,v 1.778 2000-03-04 19:11:15 bird Exp $ */
     1 /* $Id: changelog,v 1.779 2000-03-04 19:37:40 jeroen Exp $ */
     2
     3 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
     4        - GLUT32: Added logic to escape from optimizer bug in VACPP
    25
    36 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
     
    1215
    1316 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl>
    14         - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
    15                    adjusted)
     17        - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
     18                   adjusted)
    1619
    1720 2000-03-03: Markus Montkowski <mmontkowski@gmx.de>
     
    2225
    2326 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl>
    24         - KERNEL32: Create shell dirs in odin\bin directory
     27        - KERNEL32: Create shell dirs in odin\bin directory
    2528                    Cleanup (never call Open32 apis directly if the proc
    2629                    isn't a wrapper; include win32api.h and call Odin api)
     
    2831                    Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's
    2932                    fixup section doesn't start on page boundary)
    30         - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
     33        - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
    3134                             there (importing them directly creates a circular
    3235                             dependency (kernel32->advapi32->kernel32))
    3336                             Should probably be moved to ntdll
    34         - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
     37        - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
    3538                 (Realplayer 7 audio now works (when playing .rm files))
    3639
    3740 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
    38         - KERNEL32: Fixed calling convention bug in conprop2.cpp
     41        - KERNEL32: Fixed calling convention bug in conprop2.cpp
    3942                    (caused crashes with release build)
    4043
    4144 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl>
    42         - OPENGL\GLIDE:         Use Odin OS/2 api wrappers in fxos2.cpp
    43         - OPENGL\MESA:          Reapplied TLS fixes
     45        - OPENGL\GLIDE:         Use Odin OS/2 api wrappers in fxos2.cpp
     46        - OPENGL\MESA:          Reapplied TLS fixes
    4447                                Check for null pointer in wglSetPixelFormat
    45         - OPENGL\MESA\3dfx:     Use c files from Mesa dir
     48        - OPENGL\MESA\3dfx:     Use c files from Mesa dir
    4649                                Check for null pointer in wglSetPixelFormat
    47         - WINMM: Fixed DartWaveOut::getPosition (overflow)
     50        - WINMM: Fixed DartWaveOut::getPosition (overflow)
    4851                 (fixes mp3 playback in RealPlayer 7)
    49         - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
     52        - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
    5053                    if app wants to change dir to "\")
    5154                    Create shell folders + shell keys
    5255                    (NOTE: This has to be done in the odin install program
    5356                           once we have one)
    54         - ADVAPI32: Added crypt api stubs
     57        - ADVAPI32: Added crypt api stubs
    5558
    5659 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
     
    7477        - OPENGL\GLIDE\CVG\GLIDE:
    7578                  Disable instruction scheduling in release build -> messed up
    76                   colors when turned on (most likely VAC optimizer bug)
     79                  colors when turned on (most likely VAC optimizer bug)
    7780                  TODO: Somebody should also check this for the voodoo 1 glide dll.
    78         - OPENGL\GLIDE\CVG:
    79                   Fixed makefile
    80         - OPENGL\MESA\GL\gl.h
    81                   Removed circular header dependency (breaks build)
    82         - OPENGL\MESA\3dfx:
     81        - OPENGL\GLIDE\CVG:
     82                  Fixed makefile
     83        - OPENGL\MESA\GL\gl.h
     84                  Removed circular header dependency (breaks build)
     85        - OPENGL\MESA\3dfx:
    8386                  Copy 3dfx opengl32.dll to bin\glide
    8487
  • 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.