Sam Lantinga <slouken@libsdl.org> [Sat, 13 Dec 2008 06:36:47 +0000] rev 2866
Fixed SDL 1.2 compatibility problem.
The API specifies that SDL_OpenAudio() will fill out the 'desired' audio spec
with the correct samples and size set by the driver. This value is important
since it may be used by applications that size audio buffers, etc.
However, we want to allow advanced applications to call SDL_OpenAudioDevice()
which gets passed a const 'desired' parameter, and have the correct data filled
into the 'obtained' parameter, possibly allowing or not allowing format changes.
So... 'obtained' becomes the audio format the user callback is expected to use,
and we add flags to allow the application to specify which format changes are
allowed.
Note: We really need to add a way to query the 'obtained' audio spec.
Sam Lantinga <slouken@libsdl.org> [Sat, 13 Dec 2008 06:27:58 +0000] rev 2865
indent
Sam Lantinga <slouken@libsdl.org> [Sat, 13 Dec 2008 04:11:24 +0000] rev 2864
Updated TODO list
Edgar Simo <bobbens@gmail.com> [Fri, 12 Dec 2008 15:51:57 +0000] rev 2863
Some error checking when destroying the HelperWindow.
Sam Lantinga <slouken@libsdl.org> [Fri, 12 Dec 2008 06:46:20 +0000] rev 2862
Added current_w and current_h to SDL_VideoInfo for SDL 1.2 compatibility
Sam Lantinga <slouken@libsdl.org> [Wed, 10 Dec 2008 08:39:00 +0000] rev 2861
Updated TODO list
Sam Lantinga <slouken@libsdl.org> [Mon, 08 Dec 2008 00:52:12 +0000] rev 2860
Date: Sun, 07 Dec 2008 13:35:23 +0100
From: Couriersud
Subject: SDL: Mouse last_x, last_y into SDL_Mouse
the attached diff moves the static vars last_x and last_y into
SDL_Mouse. These, as far as I understand it, should be tied to the
individual mouse.
The patch also makes the code check for out of window conditions of
mouse->x,y when relative movements are passed to MouseSendMotion.
Also attached is the latest DirectFB code (dfb20081208) supporting
multiple mice and keyboards. This works quite well with sdlmame now. It
however needs more testing with different directfb configurations.
Sam Lantinga <slouken@libsdl.org> [Mon, 08 Dec 2008 00:27:32 +0000] rev 2859
Updated copyright date
Sam Lantinga <slouken@libsdl.org> [Mon, 08 Dec 2008 00:24:15 +0000] rev 2858
A little cleanup for SDL snapshot release
Sam Lantinga <slouken@libsdl.org> [Sun, 07 Dec 2008 23:57:42 +0000] rev 2857
Don't need multi-threaded X11 for SDL 1.3
Plus, this fixes lots of duplicate define warnings on Mac OS X