Ryan C. Gordon [Wed, 08 Jan 2014 00:31:19 -0500] rev 8095
Patched to compile on OpenBSD.
Ryan C. Gordon [Mon, 09 Dec 2013 16:03:18 -0500] rev 8094
Implemented the Dynamic API magic.
Ryan C. Gordon [Sun, 24 Nov 2013 23:56:17 -0500] rev 8093
Make internal SDL sources include SDL_internal.h instead of SDL_config.h
The new header will include SDL_config.h, but allows for other global stuff.
Ryan C. Gordon [Mon, 09 Dec 2013 13:30:35 -0500] rev 8092
Patched stdlib changes to compile on Windows.
Ryan C. Gordon [Mon, 25 Nov 2013 00:11:52 -0500] rev 8091
Regenerate the configure scripts.
Ryan C. Gordon [Sun, 24 Nov 2013 23:36:15 -0500] rev 8090
We don't need to check for snprintf() anymore, we don't use it.
SDL_snprintf() is built on vsnprintf() where available.
Ryan C. Gordon [Sun, 24 Nov 2013 23:35:38 -0500] rev 8089
Added SDL_vsscanf().
Ryan C. Gordon [Sun, 24 Nov 2013 21:04:51 -0500] rev 8088
Moved atomic API implementation out of headers.
Ryan C. Gordon [Sun, 24 Nov 2013 21:15:58 -0500] rev 8087
Don't use -falign-loops=16 on Mac OS X anymore.
It isn't available in Clang at all, and was more important on PowerPC.
Sam Lantinga [Mon, 30 Dec 2013 12:49:15 -0800] rev 8086
Fixed display mode calculations for applications which are not DPI aware.
If your application wants to have access to the full resolution even when the system has DPI scaling enabled, call SetProcessDPIAware() before calling SDL_Init()
e.g.
typedef BOOL (WINAPI *SetProcessDPIAware_t)(void);
HMODULE hMod = LoadLibrary("user32.dll");
if ( hMod ) {
SetProcessDPIAware_t pSetProcessDPIAware = GetProcAddress( hMod, "SetProcessDPIAware" );
if ( pSetProcessDPIAware ) {
pSetProcessDPIAware();
}
FreeLibrary( hMod );
}