SDL: Allow resizing test applications on iPadOS

From 67728a5450feaaa5a6459fd6efda194c91d8f93b Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Fri, 21 Nov 2025 09:31:10 -0800
Subject: [PATCH] Allow resizing test applications on iPadOS

---
 Xcode/SDLTest/test-Info.plist | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/Xcode/SDLTest/test-Info.plist b/Xcode/SDLTest/test-Info.plist
index c2dc468983e82..83728a1c1dfb5 100644
--- a/Xcode/SDLTest/test-Info.plist
+++ b/Xcode/SDLTest/test-Info.plist
@@ -9,5 +9,12 @@
 		<key>UIImageName</key>
 		<string></string>
 	</dict>
+    <key>UISupportedInterfaceOrientations</key>
+    <array>
+        <string>UIInterfaceOrientationLandscapeLeft</string>
+        <string>UIInterfaceOrientationLandscapeRight</string>
+        <string>UIInterfaceOrientationPortrait</string>
+        <string>UIInterfaceOrientationPortraitUpsideDown</string>
+    </array>
 </dict>
 </plist>