summaryrefslogtreecommitdiffstats
path: root/platform/ios
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-10-04 22:43:46 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-10-04 22:43:46 +0200
commitb0d512636cc903fba15ef271ef95211f1223ab8b (patch)
treeff4759916aab0801e86822cbeb039a30efa6fcce /platform/ios
parentdef5a04d06a92e538a4d899eab324f4ef9f3f40e (diff)
parent1abcfdda851610d9f72985cc0b8ce4657f523cef (diff)
downloadredot-engine-b0d512636cc903fba15ef271ef95211f1223ab8b.tar.gz
Merge pull request #97570 from dustdfg/ios_macos/print_warning_instead_of_comments
Replace comments with printed warning for Metal on x86_64
Diffstat (limited to 'platform/ios')
-rw-r--r--platform/ios/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/ios/detect.py b/platform/ios/detect.py
index 989a7f21f3..20a3a996bc 100644
--- a/platform/ios/detect.py
+++ b/platform/ios/detect.py
@@ -2,7 +2,7 @@ import os
import sys
from typing import TYPE_CHECKING
-from methods import detect_darwin_sdk_path, print_error
+from methods import detect_darwin_sdk_path, print_error, print_warning
if TYPE_CHECKING:
from SCons.Script.SConscript import SConsEnvironment
@@ -156,7 +156,7 @@ def configure(env: "SConsEnvironment"):
env.Append(CPPDEFINES=["IOS_ENABLED", "UNIX_ENABLED", "COREAUDIO_ENABLED"])
if env["metal"] and env["arch"] != "arm64":
- # Only supported on arm64, so skip it for x86_64 builds.
+ print_warning("Target architecture '{}' does not support the Metal rendering driver".format(env["arch"]))
env["metal"] = False
if env["metal"]: