Ryan C. Gordon <icculus@icculus.org> [Thu, 12 Jan 2006 22:46:36 +0000] rev 1242
Add XME hooks to X11 driver instead of relying on libxme...libxme hasn't
changed in five years, and it's a small .c file that just calls into the X11
dependencies we already use elsewhere. Including it directly allows us to
make use of the dynamic X11 code.
Fixes Bugzilla #41.
--ryan.
Ryan C. Gordon <icculus@icculus.org> [Tue, 10 Jan 2006 20:52:35 +0000] rev 1241
Properly restore vidmode when switching back to SDL's virtual terminal with
the fbcon driver: Fixes Bugzilla #37.
Ryan C. Gordon <icculus@icculus.org> [Sun, 08 Jan 2006 21:18:15 +0000] rev 1240
From Bug #36:
There are a couple of issues with the selection of Altivec alpha-blitting
routines in CalculateAlphaBlit() in src/video/SDL_Blit_A.c.
1) There's no check for the presence of Altivec when checking if the
Blit32to565PixelAlphaAltivec() routine can be selected.
2) Altivec cannot be used in video memory, and there's no check if the
destination surface is a hardware surface. (Alpha-blitting to a hardware
surface with GPU support is a bad idea, but somebody's bound to do it anyway.)
Patch to fix these attached.
Patrice Mandin <patmandin@gmail.com> [Sun, 08 Jan 2006 17:29:19 +0000] rev 1239
Rollback
Patrice Mandin <patmandin@gmail.com> [Sun, 08 Jan 2006 10:22:27 +0000] rev 1238
Load default OpenGL library if needed at driver initialization
Patrice Mandin <patmandin@gmail.com> [Fri, 06 Jan 2006 22:24:09 +0000] rev 1237
Disable XBIOS driver for mouse and joystick under MiNT. Will write a driver for /dev/mouse later.
Ryan C. Gordon <icculus@icculus.org> [Fri, 06 Jan 2006 20:57:59 +0000] rev 1236
Minor bit of debug output added to dynamic X11 code.
Ryan C. Gordon <icculus@icculus.org> [Fri, 06 Jan 2006 20:56:13 +0000] rev 1235
Make some dynamic X11 symbols option. _XData32 and _XRead32 are only available
on 64-bit systems, and are chosen with macros in the X11 headers. So on
32-bit systems, it should fail to find these symbols and keep going anyhow.
Ryan C. Gordon <icculus@icculus.org> [Fri, 06 Jan 2006 13:20:10 +0000] rev 1234
For sanity's sake, removed the '&' when passing copy_row array to asm.
Ryan C. Gordon <icculus@icculus.org> [Fri, 06 Jan 2006 00:56:12 +0000] rev 1233
Patched to compile.