diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-10-11 21:08:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-11 21:08:42 +0200 |
commit | 736a2df4375c1042b028e267dc87a13d5d9340e8 (patch) | |
tree | 224b0208c502760d1a1b856a69e77863306aad1d /core/core_bind.cpp | |
parent | 042e81f663d31c5d0c619349be14919a39333023 (diff) | |
parent | f82deaa5b38db124ef8b2f395b54602e3ff8e4ce (diff) | |
download | redot-engine-736a2df4375c1042b028e267dc87a13d5d9340e8.tar.gz |
Merge pull request #67244 from RandomShaper/split_render_further_2
Polish rendering driver refactor further (take 2)
Diffstat (limited to 'core/core_bind.cpp')
-rw-r--r-- | core/core_bind.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/core_bind.cpp b/core/core_bind.cpp index 5d3afdac90..87b36f7a21 100644 --- a/core/core_bind.cpp +++ b/core/core_bind.cpp @@ -605,8 +605,8 @@ void OS::_bind_methods() { ADD_PROPERTY_DEFAULT("low_processor_usage_mode", false); ADD_PROPERTY_DEFAULT("low_processor_usage_mode_sleep_usec", 6900); - BIND_ENUM_CONSTANT(VIDEO_DRIVER_VULKAN); - BIND_ENUM_CONSTANT(VIDEO_DRIVER_OPENGL_3); + BIND_ENUM_CONSTANT(RENDERING_DRIVER_VULKAN); + BIND_ENUM_CONSTANT(RENDERING_DRIVER_OPENGL3); BIND_ENUM_CONSTANT(DAY_SUNDAY); BIND_ENUM_CONSTANT(DAY_MONDAY); |