-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
822 changed files
with
29,406 additions
and
8,069 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -50,6 +50,9 @@ typedef enum | |
SDL_BLENDMODE_MOD = 0x00000004, /**< color modulate | ||
dstRGB = srcRGB * dstRGB | ||
dstA = dstA */ | ||
SDL_BLENDMODE_MUL = 0x00000008, /**< color multiply | ||
dstRGB = (srcRGB * dstRGB) + (dstRGB * (1-srcA)) | ||
dstA = (srcA * dstA) + (dstA * (1-srcA)) */ | ||
SDL_BLENDMODE_INVALID = 0x7FFFFFFF | ||
|
||
/* Additional custom blend modes can be returned by SDL_ComposeCustomBlendMode() */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -71,6 +71,7 @@ | |
#define HAVE_STRCHR 1 | ||
#define HAVE_STRRCHR 1 | ||
#define HAVE_STRSTR 1 | ||
#define HAVE_STRTOK_R 1 | ||
#define HAVE_STRTOL 1 | ||
#define HAVE_STRTOUL 1 | ||
#define HAVE_STRTOLL 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -71,6 +71,7 @@ | |
#define HAVE_STRCHR 1 | ||
#define HAVE_STRRCHR 1 | ||
#define HAVE_STRSTR 1 | ||
#define HAVE_STRTOK_R 1 | ||
#define HAVE_STRTOL 1 | ||
#define HAVE_STRTOUL 1 | ||
#define HAVE_STRTOLL 1 | ||
|
@@ -137,7 +138,7 @@ | |
|
||
/* Enable MFi joystick support */ | ||
#define SDL_JOYSTICK_MFI 1 | ||
/*#define SDL_JOYSTICK_HIDAPI 1*/ | ||
#define SDL_JOYSTICK_HIDAPI 1 | ||
|
||
#ifdef __TVOS__ | ||
#define SDL_SENSOR_DUMMY 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -74,6 +74,7 @@ | |
#define HAVE_STRCHR 1 | ||
#define HAVE_STRRCHR 1 | ||
#define HAVE_STRSTR 1 | ||
#define HAVE_STRTOK_R 1 | ||
#define HAVE_STRTOL 1 | ||
#define HAVE_STRTOUL 1 | ||
#define HAVE_STRTOLL 1 | ||
|
@@ -159,13 +160,13 @@ | |
#define SDL_VIDEO_DRIVER_COCOA 1 | ||
#define SDL_VIDEO_DRIVER_DUMMY 1 | ||
#undef SDL_VIDEO_DRIVER_X11 | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC "/usr/X11R6/lib/libX11.6.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT "/usr/X11R6/lib/libXext.6.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA "/usr/X11R6/lib/libXinerama.1.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2 "/usr/X11R6/lib/libXi.6.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR "/usr/X11R6/lib/libXrandr.2.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS "/usr/X11R6/lib/libXss.1.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE "/usr/X11R6/lib/libXxf86vm.1.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC "/opt/X11/lib/libX11.6.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT "/opt/X11/lib/libXext.6.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA "/opt/X11/lib/libXinerama.1.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2 "/opt/X11/lib/libXi.6.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR "/opt/X11/lib/libXrandr.2.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS "/opt/X11/lib/libXss.1.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE "/opt/X11/lib/libXxf86vm.1.dylib" | ||
#define SDL_VIDEO_DRIVER_X11_XDBE 1 | ||
#define SDL_VIDEO_DRIVER_X11_XINERAMA 1 | ||
#define SDL_VIDEO_DRIVER_X11_XRANDR 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -110,6 +110,7 @@ | |
#define HAVE_STRCHR 1 | ||
#define HAVE_STRRCHR 1 | ||
#define HAVE_STRSTR 1 | ||
/* #undef HAVE_STRTOK_R */ | ||
#define HAVE_ITOA 1 | ||
#define HAVE__LTOA 1 | ||
#define HAVE__ULTOA 1 | ||
|
@@ -122,12 +123,21 @@ | |
#define HAVE_STRTOD 1 | ||
#define HAVE_ATOI 1 | ||
#define HAVE_ATOF 1 | ||
#define HAVE_WCSLEN 1 | ||
#define HAVE_WCSLCPY 1 | ||
#define HAVE_WCSLCAT 1 | ||
/* #define HAVE_WCSDUP 1 */ | ||
/* #define wcsdup _wcsdup */ | ||
#define HAVE_WCSSTR 1 | ||
#define HAVE_WCSCMP 1 | ||
#define HAVE_WCSNCMP 1 | ||
#define HAVE_STRCMP 1 | ||
#define HAVE_STRNCMP 1 | ||
#define HAVE_STRICMP 1 | ||
#define HAVE_STRCASECMP 1 | ||
#define HAVE_STRNCASECMP 1 | ||
#define HAVE_SSCANF 1 | ||
#define HAVE_SSCANF 1 | ||
#define HAVE_VSSCANF 1 | ||
#define HAVE_SNPRINTF 1 | ||
#define HAVE_VSNPRINTF 1 | ||
#define HAVE_SETJMP 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -84,7 +84,6 @@ typedef unsigned int uintptr_t; | |
#define HAVE_XINPUT_H 1 | ||
#define HAVE_MMDEVICEAPI_H 1 | ||
#define HAVE_AUDIOCLIENT_H 1 | ||
#define HAVE_ENDPOINTVOLUME_H 1 | ||
|
||
/* This is disabled by default to avoid C runtime dependencies and manifest requirements */ | ||
#ifdef HAVE_LIBC | ||
|
@@ -118,6 +117,10 @@ typedef unsigned int uintptr_t; | |
#define HAVE_STRCHR 1 | ||
#define HAVE_STRRCHR 1 | ||
#define HAVE_STRSTR 1 | ||
/* #undef HAVE_STRTOK_R */ | ||
#if defined(_MSC_VER) | ||
#define HAVE_STRTOK_S 1 | ||
#endif | ||
/* These functions have security warnings, so we won't use them */ | ||
/* #undef HAVE__LTOA */ | ||
/* #undef HAVE__ULTOA */ | ||
|
@@ -139,7 +142,7 @@ typedef unsigned int uintptr_t; | |
#define HAVE_ATAN2 1 | ||
#define HAVE_ATAN2F 1 | ||
#define HAVE_CEILF 1 | ||
#define HAVE__COPYSIGN 1 | ||
#define HAVE__COPYSIGN 1 | ||
#define HAVE_COS 1 | ||
#define HAVE_COSF 1 | ||
#define HAVE_EXP 1 | ||
|
@@ -168,7 +171,7 @@ typedef unsigned int uintptr_t; | |
#define HAVE_STRTOLL 1 | ||
#define HAVE_VSSCANF 1 | ||
#define HAVE_SCALBN 1 | ||
#define HAVE_SCALBNF 1 | ||
#define HAVE_SCALBNF 1 | ||
#endif | ||
/* This function is available with at least the VC++ 2008 C runtime library */ | ||
#if _MSC_VER >= 1400 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -100,7 +100,6 @@ typedef unsigned int uintptr_t; | |
|
||
#define HAVE_MMDEVICEAPI_H 1 | ||
#define HAVE_AUDIOCLIENT_H 1 | ||
#define HAVE_ENDPOINTVOLUME_H 1 | ||
|
||
#define HAVE_LIBC 1 | ||
#define STDC_HEADERS 1 | ||
|
@@ -131,6 +130,7 @@ typedef unsigned int uintptr_t; | |
#define HAVE_STRCHR 1 | ||
#define HAVE_STRRCHR 1 | ||
#define HAVE_STRSTR 1 | ||
#define HAVE_STRTOK_S 1 | ||
//#define HAVE_ITOA 1 // TODO, WinRT: consider using _itoa_s instead | ||
//#define HAVE__LTOA 1 // TODO, WinRT: consider using _ltoa_s instead | ||
//#define HAVE__ULTOA 1 // TODO, WinRT: consider using _ultoa_s instead | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -67,6 +67,7 @@ | |
#define HAVE_STRCHR 1 | ||
#define HAVE_STRRCHR 1 | ||
#define HAVE_STRSTR 1 | ||
#define HAVE_STRTOK_R 1 | ||
#define HAVE_STRTOL 1 | ||
#define HAVE_STRTOUL 1 | ||
#define HAVE_STRTOLL 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -73,8 +73,8 @@ | |
# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ | ||
# endif | ||
# if defined (_M_ARM64) | ||
# include <armintr.h> | ||
# include <arm_neon.h> | ||
# include <arm64intr.h> | ||
# include <arm64_neon.h> | ||
# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ | ||
# endif | ||
# endif | ||
|
@@ -186,6 +186,11 @@ extern DECLSPEC SDL_bool SDLCALL SDL_HasAVX2(void); | |
*/ | ||
extern DECLSPEC SDL_bool SDLCALL SDL_HasAVX512F(void); | ||
|
||
/** | ||
* This function returns true if the CPU has ARM SIMD (ARMv6) features. | ||
*/ | ||
extern DECLSPEC SDL_bool SDLCALL SDL_HasARMSIMD(void); | ||
|
||
/** | ||
* This function returns true if the CPU has NEON (ARM SIMD) features. | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -390,6 +390,9 @@ typedef enum { | |
#ifndef WIN32_LEAN_AND_MEAN | ||
#define WIN32_LEAN_AND_MEAN 1 | ||
#endif | ||
#ifndef NOMINMAX /* don't define min() and max(). */ | ||
#define NOMINMAX | ||
#endif | ||
#include <windows.h> | ||
|
||
#if __WINRT__ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
Simple DirectMedia Layer | ||
Copyright (C) 1997-2019 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2020 Sam Lantinga <[email protected]> | ||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
|
@@ -42,10 +42,13 @@ | |
#ifdef __linux__ | ||
#include <endian.h> | ||
#define SDL_BYTEORDER __BYTE_ORDER | ||
#else /* __linux__ */ | ||
#elif defined(__OpenBSD__) | ||
#include <endian.h> | ||
#define SDL_BYTEORDER BYTE_ORDER | ||
#else | ||
#if defined(__hppa__) || \ | ||
defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ | ||
(defined(__MIPS__) && defined(__MISPEB__)) || \ | ||
(defined(__MIPS__) && defined(__MIPSEB__)) || \ | ||
defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || \ | ||
defined(__sparc__) | ||
#define SDL_BYTEORDER SDL_BIG_ENDIAN | ||
|
Oops, something went wrong.