diff --git a/doc/classes/RenderingDevice.xml b/doc/classes/RenderingDevice.xml
index 2fc0e48544..7aae47064e 100644
--- a/doc/classes/RenderingDevice.xml
+++ b/doc/classes/RenderingDevice.xml
@@ -2479,6 +2479,12 @@
Floating-point specialization constant.
+
+ Support for MetalFX spatial upscaling.
+
+
+ Support for MetalFX temporal upscaling.
+
Features support for buffer device address extension.
diff --git a/servers/rendering/rendering_device.cpp b/servers/rendering/rendering_device.cpp
index 2ae365d167..5e2b2f370d 100644
--- a/servers/rendering/rendering_device.cpp
+++ b/servers/rendering/rendering_device.cpp
@@ -7829,6 +7829,8 @@ void RenderingDevice::_bind_methods() {
BIND_ENUM_CONSTANT(PIPELINE_SPECIALIZATION_CONSTANT_TYPE_INT);
BIND_ENUM_CONSTANT(PIPELINE_SPECIALIZATION_CONSTANT_TYPE_FLOAT);
+ BIND_ENUM_CONSTANT(SUPPORTS_METALFX_SPATIAL);
+ BIND_ENUM_CONSTANT(SUPPORTS_METALFX_TEMPORAL);
BIND_ENUM_CONSTANT(SUPPORTS_BUFFER_DEVICE_ADDRESS);
BIND_ENUM_CONSTANT(LIMIT_MAX_BOUND_UNIFORM_SETS);