SDL2: rebuilt from latest SDL2-hg-r13229.

fixes a missing export in previous build.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1644 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2019-11-05 07:01:09 +00:00
parent 027ed8735c
commit 82289e3de7
16 changed files with 16 additions and 7 deletions

View File

@ -559,7 +559,7 @@ typedef union SDL_Event
{
Uint32 type; /**< Event type, shared with all events */
SDL_CommonEvent common; /**< Common event data */
SDL_DisplayEvent display; /**< Window event data */
SDL_DisplayEvent display; /**< Display event data */
SDL_WindowEvent window; /**< Window event data */
SDL_KeyboardEvent key; /**< Keyboard event data */
SDL_TextEditingEvent edit; /**< Text editing event data */

View File

@ -1,2 +1,2 @@
#define SDL_REVISION "hg-13226:294f9fc96e56"
#define SDL_REVISION_NUMBER 13226
#define SDL_REVISION "hg-13229:0b98870c7f72"
#define SDL_REVISION_NUMBER 13229

View File

@ -1,6 +1,13 @@
This is a list of major changes in SDL's version history.
---------------------------------------------------------------------------
2.0.11/12:
---------------------------------------------------------------------------
General:
* Added SDL_LockTextureToSurface(), similar to SDL_LockTexture() but the locked area is exposed as a SDL surface.
---------------------------------------------------------------------------
2.0.10:
---------------------------------------------------------------------------

View File

@ -40,7 +40,7 @@ while test $# -gt 0; do
lib_suffix=$optarg
;;
--version)
echo 2.0.10
echo 2.0.11
;;
--cflags)
echo -I${prefix}/include -Dmain=SDL_main

View File

@ -559,7 +559,7 @@ typedef union SDL_Event
{
Uint32 type; /**< Event type, shared with all events */
SDL_CommonEvent common; /**< Common event data */
SDL_DisplayEvent display; /**< Window event data */
SDL_DisplayEvent display; /**< Display event data */
SDL_WindowEvent window; /**< Window event data */
SDL_KeyboardEvent key; /**< Keyboard event data */
SDL_TextEditingEvent edit; /**< Text editing event data */

View File

@ -1,2 +1,2 @@
#define SDL_REVISION "hg-13226:294f9fc96e56"
#define SDL_REVISION_NUMBER 13226
#define SDL_REVISION "hg-13229:0b98870c7f72"
#define SDL_REVISION_NUMBER 13229

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -278,6 +278,7 @@ SDL_HapticStopEffect
SDL_HapticUnpause
SDL_HapticUpdateEffect
SDL_Has3DNow
SDL_HasARMSIMD
SDL_HasAVX
SDL_HasAVX2
SDL_HasAVX512F

View File

@ -275,6 +275,7 @@
++'_SDL_HapticUnpause'.'SDL2.DLL'..'SDL_HapticUnpause'
++'_SDL_HapticUpdateEffect'.'SDL2.DLL'..'SDL_HapticUpdateEffect'
++'_SDL_Has3DNow'.'SDL2.DLL'..'SDL_Has3DNow'
++'_SDL_HasARMSIMD'.'SDL2.DLL'..'SDL_HasARMSIMD'
++'_SDL_HasAVX'.'SDL2.DLL'..'SDL_HasAVX'
++'_SDL_HasAVX2'.'SDL2.DLL'..'SDL_HasAVX2'
++'_SDL_HasAVX512F'.'SDL2.DLL'..'SDL_HasAVX512F'

Binary file not shown.