Ryan C. Gordon <icculus@icculus.org> [Sat, 12 Jul 2003 13:30:30 +0000] rev 650
We need to lookup the address of glGetString before calling GL_MakeCurrent(),
since the X11 target needs to query for extensions in there...hopefully this
other platforms don't need to have a current context before symbol lookup
works or something strange like that... --ryan.
Sam Lantinga <slouken@libsdl.org> [Thu, 10 Jul 2003 07:56:19 +0000] rev 649
Added some notes from the benefit of my experience. :)
Sam Lantinga <slouken@libsdl.org> [Thu, 10 Jul 2003 07:46:19 +0000] rev 648
Exposed SDL_LoadObject(), SDL_LoadFunction(), and SDL_UnloadObject() APIs
Sam Lantinga <slouken@libsdl.org> [Wed, 09 Jul 2003 15:38:28 +0000] rev 647
Added RISCOS Makefiles to the configure process
Sam Lantinga <slouken@libsdl.org> [Wed, 09 Jul 2003 15:32:21 +0000] rev 646
Fixed incorrect prototype for glXQueryExtensionsString()
Patrice Mandin <patmandin@gmail.com> [Mon, 07 Jul 2003 19:19:39 +0000] rev 645
Atari MiNT: remove useless files
Patrice Mandin <patmandin@gmail.com> [Mon, 07 Jul 2003 19:16:03 +0000] rev 644
Atari MiNT: added more audio drivers
Ryan C. Gordon <icculus@icculus.org> [Tue, 01 Jul 2003 16:35:54 +0000] rev 643
Removed direct dependency on OpenGL (call current_video->glGetString() instead
of glGetString() directly)...otherwise we'd have to explicitly link to a
libGL. --ryan.
Sam Lantinga <slouken@libsdl.org> [Tue, 01 Jul 2003 01:18:27 +0000] rev 642
*** empty log message ***
Sam Lantinga <slouken@libsdl.org> [Sat, 28 Jun 2003 21:52:26 +0000] rev 641
Date: 28 Jun 2003 22:42:52 +0100
From: Alan Swanson
Subject: Re: [SDL] New XFree 4.3 Video Mode Patch
I have a wee amendment that moves the qsort in set_best_resolution
to only occur after failing to find an exact match only. This would
make absolutely sure we get a user set mode.
While I've never had any problems for my normal resolutions (1280x1024,
1024x768, 800x600 & 640,480) while closely examining the output from
qsort I've noticed it doesn't seem to sort the modes fully. These is
one definite wrong at 1152x768 and a few that just look wrong to me.
From a program (attached) I made to examine this more easily. X has
sorted its mode list using the same method as ours (plus frequency),
and our user modes get inserted without any other movement.
On the patch I've made I've also changed cmpmodes to sort on vertical
resolution and then horizontal. Ie vertical is now most significant
bit.