diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-22 14:54:08 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-22 14:54:08 -0600 |
commit | fd4bddbeaf9e7f30eccb5b61ef5e0ef1023afb35 (patch) | |
tree | 795ff26e80b49c3333ab13f7f32c0ec06a0d2050 | |
parent | f952bfe9985ad8f507cc29b2c7601bbba18b8039 (diff) | |
parent | 5f8df2ca63369fbb0c7b29aad03d44ad1b337c3c (diff) | |
download | redot-engine-fd4bddbeaf9e7f30eccb5b61ef5e0ef1023afb35.tar.gz |
Merge pull request #98946 from timothyqiu/3d-index
Remove unnecessary `_3D_DISABLED` checks in `Performance`
-rw-r--r-- | main/performance.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/main/performance.cpp b/main/performance.cpp index c73fb62b76..398511995b 100644 --- a/main/performance.cpp +++ b/main/performance.cpp @@ -132,11 +132,9 @@ String Performance::get_monitor_name(Monitor p_monitor) const { PNAME("physics_2d/active_objects"), PNAME("physics_2d/collision_pairs"), PNAME("physics_2d/islands"), -#ifndef _3D_DISABLED PNAME("physics_3d/active_objects"), PNAME("physics_3d/collision_pairs"), PNAME("physics_3d/islands"), -#endif // _3D_DISABLED PNAME("audio/driver/output_latency"), PNAME("navigation/active_maps"), PNAME("navigation/regions"), @@ -280,11 +278,9 @@ Performance::MonitorType Performance::get_monitor_type(Monitor p_monitor) const MONITOR_TYPE_QUANTITY, MONITOR_TYPE_QUANTITY, MONITOR_TYPE_QUANTITY, -#ifndef _3D_DISABLED MONITOR_TYPE_QUANTITY, MONITOR_TYPE_QUANTITY, MONITOR_TYPE_QUANTITY, -#endif // _3D_DISABLED MONITOR_TYPE_TIME, MONITOR_TYPE_QUANTITY, MONITOR_TYPE_QUANTITY, |