1
0
Fork 0

Merge pull request #101198 from Calinou/editor-metalfx-show-options-on-all-platforms

Show MetalFX options in the Scaling 3D Mode enum on all platforms
This commit is contained in:
Rémi Verschelde 2025-01-07 10:14:54 +01:00
commit 558a18fbb7
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 2 deletions

View File

@ -3670,10 +3670,9 @@ void RenderingServer::init() {
{
Vector<String> mode_hints_arr = { "Bilinear (Fastest)", "FSR 1.0 (Fast)", "FSR 2.2 (Slow)" };
mode_hints = String(",").join(mode_hints_arr);
#ifdef METAL_ENABLED
mode_hints_arr.push_back("MetalFX (Spatial)");
mode_hints_arr.push_back("MetalFX (Temporal)");
#endif
mode_hints_metal = String(",").join(mode_hints_arr);
}