1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-30 18:30:54 +00:00

Core: Add Apple Instruments support

This commit is contained in:
Stuart Carnie
2025-11-30 08:59:13 +11:00
parent 25203e24c4
commit 93b6348cfe
5 changed files with 131 additions and 19 deletions

View File

@@ -202,7 +202,12 @@ opts.Add(BoolVariable("use_volk", "Use the volk library to load the Vulkan loade
opts.Add(BoolVariable("accesskit", "Use AccessKit C SDK", True))
opts.Add(("accesskit_sdk_path", "Path to the AccessKit C SDK", ""))
opts.Add(BoolVariable("sdl", "Enable the SDL3 input driver", True))
opts.Add(("profiler_path", "Path to the Profiler framework. Only tracy and perfetto are supported at the moment.", ""))
opts.Add(
EnumVariable(
"profiler", "Specify the profiler to use", "none", ["none", "tracy", "perfetto", "instruments"], ignorecase=2
)
)
opts.Add(("profiler_path", "Path to the Profiler framework.", ""))
opts.Add(
BoolVariable(
"profiler_sample_callstack",