-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SDL2, windows: update to latest official 2.30.6 version.
- Loading branch information
Showing
9 changed files
with
32 additions
and
25 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
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,7 +1,7 @@ | ||
/* Generated by updaterev.sh, do not edit */ | ||
#ifdef SDL_VENDOR_INFO | ||
#define SDL_REVISION "SDL-release-2.30.4-0-g92fe3b19c (" SDL_VENDOR_INFO ")" | ||
#define SDL_REVISION "SDL-release-2.30.6-0-gba2f78a00 (" SDL_VENDOR_INFO ")" | ||
#else | ||
#define SDL_REVISION "SDL-release-2.30.4-0-g92fe3b19c" | ||
#define SDL_REVISION "SDL-release-2.30.6-0-gba2f78a00" | ||
#endif | ||
#define SDL_REVISION_NUMBER 0 |
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
Binary file not shown.
Binary file not shown.
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-2023 Sam Lantinga <[email protected]> | ||
Copyright (C) 1997-2024 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 | ||
|
@@ -36,7 +36,7 @@ | |
#endif | ||
#undef WINVER | ||
#undef _WIN32_WINNT | ||
#if defined(SDL_VIDEO_RENDER_D3D12) | ||
#if SDL_VIDEO_RENDER_D3D12 | ||
#define _WIN32_WINNT 0xA00 /* For D3D12, 0xA00 is required */ | ||
#elif defined(HAVE_SHELLSCALINGAPI_H) | ||
#define _WIN32_WINNT 0x603 /* For DPI support */ | ||
|
@@ -92,16 +92,6 @@ | |
#include <windows.h> | ||
#include <basetyps.h> /* for REFIID with broken mingw.org headers */ | ||
|
||
/* Older Visual C++ headers don't have the Win64-compatible typedefs... */ | ||
#if defined(_MSC_VER) && (_MSC_VER <= 1200) | ||
#ifndef DWORD_PTR | ||
#define DWORD_PTR DWORD | ||
#endif | ||
#ifndef LONG_PTR | ||
#define LONG_PTR LONG | ||
#endif | ||
#endif | ||
|
||
#include "SDL_rect.h" | ||
|
||
/* Routines to convert from UTF8 to native Windows text */ | ||
|
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