Sam Lantinga <slouken@libsdl.org> [Sun, 18 Oct 2009 17:49:40 +0000] rev 3405
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org> [Sun, 18 Oct 2009 16:14:35 +0000] rev 3404
Fixed bug #853
Ludwig Nussel 2009-10-18 05:34:18 PDT
src/joystick/linux/SDL_sysjoystick.c has some problems:
- test_bit() might break with strict aliasing
- test_bit() assumes array is Uint32 but its actually "unsigned long"
on 64bit systems sizeof(long) != sizeof(Uint32).
- the keybit array is too small
- the arrays are unitialized so the number of
detected buttons is quite random
Sam Lantinga <slouken@libsdl.org> [Sat, 17 Oct 2009 23:29:52 +0000] rev 3403
Whoops, need " inside quotes
Sam Lantinga <slouken@libsdl.org> [Sat, 17 Oct 2009 21:46:08 +0000] rev 3402
Fixed bug #852
Jesse Anders 2009-10-17 14:17:25 PDT
In VC++, the build script that creates SDL_config.h and SDL_revision.h fails
when the project directory path includes spaces. For example, if the project
directory path is:
c:\Documents and Settings\Jesse\My Documents\Visual Studio 2008\Projects\SDL
1.3\VisualC\SDL\
The following error is generated:
'and' is not recognized as an internal or external command
Placing all paths in quotes fixes this.
Sam Lantinga <slouken@libsdl.org> [Sat, 17 Oct 2009 07:38:14 +0000] rev 3401
iPhone/Xcode for 1.3
Eric Wing to Sam
Here's another patch for Xcode-iPhone for 1.3.
This has been sitting for awhile too, so you may want to test.
Contains mostly small changes, but tries to unify how I do some of the script stages with the Mac version.
Sam Lantinga <slouken@libsdl.org> [Sat, 17 Oct 2009 07:36:45 +0000] rev 3400
iPhone interruption patch / SDL 1.3
Eric Wing to Sam
I've been sitting on this too long. I need to push.
It's untested because of the unrelated crashing bug I've been experiencing.
Also have a fix for SIZEOF_VOIDP in the config for both iPhone and Mac.
Mike Gorchak <lestat@i.com.ua> [Tue, 13 Oct 2009 20:17:11 +0000] rev 3399
Working on fullscreen video modes support
Mike Gorchak <lestat@i.com.ua> [Tue, 13 Oct 2009 20:16:23 +0000] rev 3398
Fixed memory allocation size.
Mike Gorchak <lestat@i.com.ua> [Tue, 13 Oct 2009 18:14:22 +0000] rev 3397
Fixed handling of the initial window size.
Mike Gorchak <lestat@i.com.ua> [Tue, 13 Oct 2009 11:26:40 +0000] rev 3396
All 2D operations in Photon driver have been finished. The driver is ready to use. There fullscreen modes and YUV textures are rest only.