update SDL3 to latest commit

This commit is contained in:
Sasha Szpakowski
2024-10-06 20:30:44 -03:00
parent 1b0fdc338b
commit 9e5eb1b018
1426 changed files with 242456 additions and 103496 deletions
+5 -10
View File
@@ -88,11 +88,6 @@ foreach my $release (@releases) {
close(PIPEFH);
}
# these are incorrect in the dynapi header, because we forgot to add them
# until a later release, but are available in the older release.
$funcs{'SDL_WinRTGetFSPathUNICODE'} = '2.0.3';
$funcs{'SDL_WinRTGetFSPathUTF8'} = '2.0.3';
if (not defined $wikipath) {
foreach my $release (@releases) {
foreach my $fn (sort keys %funcs) {
@@ -105,7 +100,7 @@ if (not defined $wikipath) {
foreach my $fn (keys %funcs) {
my $revision = $funcs{$fn};
$revision = $next_release if $revision eq 'HEAD';
my $fname = "$fn.mediawiki";
my $fname = "$fn.md";
if ( ! -f $fname ) {
#print STDERR "No such file: $fname\n";
next;
@@ -117,21 +112,21 @@ if (not defined $wikipath) {
while (<FH>) {
chomp;
if ((/\A\-\-\-\-/) && (!$added)) {
push @lines, "== Version ==";
push @lines, "## Version";
push @lines, "";
push @lines, "This function is available since SDL $revision.";
push @lines, "";
$added = 1;
}
push @lines, $_;
next if not /\A\=\=\s+Version\s+\=\=/;
next if not /\A\#\#\s+Version/;
$added = 1;
push @lines, "";
push @lines, "This function is available since SDL $revision.";
push @lines, "";
while (<FH>) {
chomp;
next if not (/\A\=\=\s+/ || /\A\-\-\-\-/);
next if not (/\A\#\#\s+/ || /\A\-\-\-\-/);
push @lines, $_;
last;
}
@@ -139,7 +134,7 @@ if (not defined $wikipath) {
close(FH);
if (!$added) {
push @lines, "== Version ==";
push @lines, "## Version";
push @lines, "";
push @lines, "This function is available since SDL $revision.";
push @lines, "";