Changeset 3000
- Timestamp:
- Mar 4, 2000, 8:37:40 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 4 edited
-
changelog (modified) (5 diffs)
-
src/opengl/glut/glut_event.c (modified) (5 diffs)
-
src/opengl/glut/glut_win.c (modified) (2 diffs)
-
src/opengl/glut/glut_winmisc.c (modified) (2 diffs)
-
src/opengl/glut/wgl.h (deleted)
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 2 5 3 6 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no> … … 12 15 13 16 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl> 14 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't15 adjusted)17 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't 18 adjusted) 16 19 17 20 2000-03-03: Markus Montkowski <mmontkowski@gmx.de> … … 22 25 23 26 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl> 24 - KERNEL32: Create shell dirs in odin\bin directory27 - KERNEL32: Create shell dirs in odin\bin directory 25 28 Cleanup (never call Open32 apis directly if the proc 26 29 isn't a wrapper; include win32api.h and call Odin api) … … 28 31 Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's 29 32 fixup section doesn't start on page boundary) 30 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them33 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them 31 34 there (importing them directly creates a circular 32 35 dependency (kernel32->advapi32->kernel32)) 33 36 Should probably be moved to ntdll 34 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample37 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample 35 38 (Realplayer 7 audio now works (when playing .rm files)) 36 39 37 40 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl> 38 - KERNEL32: Fixed calling convention bug in conprop2.cpp41 - KERNEL32: Fixed calling convention bug in conprop2.cpp 39 42 (caused crashes with release build) 40 43 41 44 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl> 42 - OPENGL\GLIDE:Use Odin OS/2 api wrappers in fxos2.cpp43 - OPENGL\MESA:Reapplied TLS fixes45 - OPENGL\GLIDE: Use Odin OS/2 api wrappers in fxos2.cpp 46 - OPENGL\MESA: Reapplied TLS fixes 44 47 Check for null pointer in wglSetPixelFormat 45 - OPENGL\MESA\3dfx:Use c files from Mesa dir48 - OPENGL\MESA\3dfx: Use c files from Mesa dir 46 49 Check for null pointer in wglSetPixelFormat 47 - WINMM: Fixed DartWaveOut::getPosition (overflow)50 - WINMM: Fixed DartWaveOut::getPosition (overflow) 48 51 (fixes mp3 playback in RealPlayer 7) 49 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash52 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash 50 53 if app wants to change dir to "\") 51 54 Create shell folders + shell keys 52 55 (NOTE: This has to be done in the odin install program 53 56 once we have one) 54 - ADVAPI32: Added crypt api stubs57 - ADVAPI32: Added crypt api stubs 55 58 56 59 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl> … … 74 77 - OPENGL\GLIDE\CVG\GLIDE: 75 78 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) 77 80 TODO: Somebody should also check this for the voodoo 1 glide dll. 78 - OPENGL\GLIDE\CVG:79 Fixed makefile80 - OPENGL\MESA\GL\gl.h81 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: 83 86 Copy 3dfx opengl32.dll to bin\glide 84 87 -
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.
