mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-01-19 04:31:10 +00:00
update the SDL framework for OS X to hg 5605:9269bf952041 (after 1.2.14)
This commit is contained in:
parent
aabfa4a319
commit
f1cf4afa25
@ -39,6 +39,10 @@
|
|||||||
/*@}*/
|
/*@}*/
|
||||||
|
|
||||||
#ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */
|
#ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */
|
||||||
|
#ifdef __linux__
|
||||||
|
#include <endian.h>
|
||||||
|
#define SDL_BYTEORDER __BYTE_ORDER
|
||||||
|
#else /* __linux __ */
|
||||||
#if defined(__hppa__) || \
|
#if defined(__hppa__) || \
|
||||||
defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \
|
defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \
|
||||||
(defined(__MIPS__) && defined(__MISPEB__)) || \
|
(defined(__MIPS__) && defined(__MISPEB__)) || \
|
||||||
@ -48,6 +52,7 @@
|
|||||||
#else
|
#else
|
||||||
#define SDL_BYTEORDER SDL_LIL_ENDIAN
|
#define SDL_BYTEORDER SDL_LIL_ENDIAN
|
||||||
#endif
|
#endif
|
||||||
|
#endif /* __linux __ */
|
||||||
#endif /* !SDL_BYTEORDER */
|
#endif /* !SDL_BYTEORDER */
|
||||||
|
|
||||||
|
|
||||||
@ -86,7 +91,7 @@ static __inline__ Uint16 SDL_Swap16(Uint16 x)
|
|||||||
__asm__("rlwimi %0,%2,8,16,23" : "=&r" (result) : "0" (x >> 8), "r" (x));
|
__asm__("rlwimi %0,%2,8,16,23" : "=&r" (result) : "0" (x >> 8), "r" (x));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
#elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__))
|
#elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__)) && !defined(__mcoldfire__)
|
||||||
static __inline__ Uint16 SDL_Swap16(Uint16 x)
|
static __inline__ Uint16 SDL_Swap16(Uint16 x)
|
||||||
{
|
{
|
||||||
__asm__("rorw #8,%0" : "=d" (x) : "0" (x) : "cc");
|
__asm__("rorw #8,%0" : "=d" (x) : "0" (x) : "cc");
|
||||||
@ -94,7 +99,7 @@ static __inline__ Uint16 SDL_Swap16(Uint16 x)
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static __inline__ Uint16 SDL_Swap16(Uint16 x) {
|
static __inline__ Uint16 SDL_Swap16(Uint16 x) {
|
||||||
return((x<<8)|(x>>8));
|
return SDL_static_cast(Uint16, ((x<<8)|(x>>8)));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -121,7 +126,7 @@ static __inline__ Uint32 SDL_Swap32(Uint32 x)
|
|||||||
__asm__("rlwimi %0,%2,24,0,7" : "=&r" (result) : "0" (result), "r" (x));
|
__asm__("rlwimi %0,%2,24,0,7" : "=&r" (result) : "0" (result), "r" (x));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
#elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__))
|
#elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__)) && !defined(__mcoldfire__)
|
||||||
static __inline__ Uint32 SDL_Swap32(Uint32 x)
|
static __inline__ Uint32 SDL_Swap32(Uint32 x)
|
||||||
{
|
{
|
||||||
__asm__("rorw #8,%0\n\tswap %0\n\trorw #8,%0" : "=d" (x) : "0" (x) : "cc");
|
__asm__("rorw #8,%0\n\tswap %0\n\trorw #8,%0" : "=d" (x) : "0" (x) : "cc");
|
||||||
@ -129,7 +134,7 @@ static __inline__ Uint32 SDL_Swap32(Uint32 x)
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static __inline__ Uint32 SDL_Swap32(Uint32 x) {
|
static __inline__ Uint32 SDL_Swap32(Uint32 x) {
|
||||||
return((x<<24)|((x<<8)&0x00FF0000)|((x>>8)&0x0000FF00)|(x>>24));
|
return SDL_static_cast(Uint32, ((x<<24)|((x<<8)&0x00FF0000)|((x>>8)&0x0000FF00)|(x>>24)));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -166,7 +171,7 @@ static __inline__ Uint64 SDL_Swap64(Uint64 x)
|
|||||||
x = SDL_Swap32(lo);
|
x = SDL_Swap32(lo);
|
||||||
x <<= 32;
|
x <<= 32;
|
||||||
x |= SDL_Swap32(hi);
|
x |= SDL_Swap32(hi);
|
||||||
return(x);
|
return (x);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
|
@ -203,12 +203,13 @@ typedef struct SDL_SysWMinfo {
|
|||||||
/**
|
/**
|
||||||
* This function gives you custom hooks into the window manager information.
|
* This function gives you custom hooks into the window manager information.
|
||||||
* It fills the structure pointed to by 'info' with custom information and
|
* It fills the structure pointed to by 'info' with custom information and
|
||||||
* returns 1 if the function is implemented. If it's not implemented, or
|
* returns 0 if the function is not implemented, 1 if the function is
|
||||||
* the version member of the 'info' structure is invalid, it returns 0.
|
* implemented and no error occurred, and -1 if the version member of
|
||||||
|
* the 'info' structure is not filled in or not supported.
|
||||||
*
|
*
|
||||||
* You typically use this function like this:
|
* You typically use this function like this:
|
||||||
* @code
|
* @code
|
||||||
* SDL_SysWMInfo info;
|
* SDL_SysWMinfo info;
|
||||||
* SDL_VERSION(&info.version);
|
* SDL_VERSION(&info.version);
|
||||||
* if ( SDL_GetWMInfo(&info) ) { ... }
|
* if ( SDL_GetWMInfo(&info) ) { ... }
|
||||||
* @endcode
|
* @endcode
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
#ifndef DECLSPEC
|
#ifndef DECLSPEC
|
||||||
# if defined(__BEOS__) || defined(__HAIKU__)
|
# if defined(__BEOS__) || defined(__HAIKU__)
|
||||||
# if defined(__GNUC__)
|
# if defined(__GNUC__)
|
||||||
# define DECLSPEC __declspec(dllexport)
|
# define DECLSPEC
|
||||||
# else
|
# else
|
||||||
# define DECLSPEC __declspec(export)
|
# define DECLSPEC __declspec(export)
|
||||||
# endif
|
# endif
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
|
<key>BuildMachineOSBuild</key>
|
||||||
|
<string>10K549</string>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>English</string>
|
<string>English</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
@ -22,5 +24,19 @@
|
|||||||
<string>SDLX</string>
|
<string>SDLX</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.2.14</string>
|
<string>1.2.14</string>
|
||||||
|
<key>DTCompiler</key>
|
||||||
|
<string>4.0</string>
|
||||||
|
<key>DTPlatformBuild</key>
|
||||||
|
<string>10M2518</string>
|
||||||
|
<key>DTPlatformVersion</key>
|
||||||
|
<string>PG</string>
|
||||||
|
<key>DTSDKBuild</key>
|
||||||
|
<string>10K549</string>
|
||||||
|
<key>DTSDKName</key>
|
||||||
|
<string></string>
|
||||||
|
<key>DTXcode</key>
|
||||||
|
<string>0400</string>
|
||||||
|
<key>DTXcodeBuild</key>
|
||||||
|
<string>10M2518</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user