Merge pull request #95179 from DanielKinsman/profiler-target-fps
Add target fps editor setting to visual profiler
This commit is contained in:
commit
52838efaad
|
@ -194,6 +194,9 @@
|
||||||
The maximum number of script functions that can be displayed per frame in the profiler. If there are more script functions called in a given profiler frame, these functions will be discarded from the profiling results entirely.
|
The maximum number of script functions that can be displayed per frame in the profiler. If there are more script functions called in a given profiler frame, these functions will be discarded from the profiling results entirely.
|
||||||
[b]Note:[/b] This setting is only read when the profiler is first started, so changing it during profiling will have no effect.
|
[b]Note:[/b] This setting is only read when the profiler is first started, so changing it during profiling will have no effect.
|
||||||
</member>
|
</member>
|
||||||
|
<member name="debugger/profiler_target_fps" type="int" setter="" getter="">
|
||||||
|
The target frame rate shown in the visual profiler graph, in frames per second.
|
||||||
|
</member>
|
||||||
<member name="debugger/remote_inspect_refresh_interval" type="float" setter="" getter="">
|
<member name="debugger/remote_inspect_refresh_interval" type="float" setter="" getter="">
|
||||||
The refresh interval for the remote inspector's properties (in seconds). Lower values are more reactive, but may cause stuttering while the project is running from the editor and the [b]Remote[/b] scene tree is selected in the Scene tree dock.
|
The refresh interval for the remote inspector's properties (in seconds). Lower values are more reactive, but may cause stuttering while the project is running from the editor and the [b]Remote[/b] scene tree is selected in the Scene tree dock.
|
||||||
</member>
|
</member>
|
||||||
|
|
|
@ -103,6 +103,8 @@ void EditorVisualProfiler::clear() {
|
||||||
variables->clear();
|
variables->clear();
|
||||||
//activate->set_pressed(false);
|
//activate->set_pressed(false);
|
||||||
|
|
||||||
|
graph_limit = 1000.0f / CLAMP(int(EDITOR_GET("debugger/profiler_target_fps")), 1, 1000);
|
||||||
|
|
||||||
updating_frame = true;
|
updating_frame = true;
|
||||||
cursor_metric_edit->set_min(0);
|
cursor_metric_edit->set_min(0);
|
||||||
cursor_metric_edit->set_max(0);
|
cursor_metric_edit->set_max(0);
|
||||||
|
@ -812,6 +814,8 @@ EditorVisualProfiler::EditorVisualProfiler() {
|
||||||
int metric_size = CLAMP(int(EDITOR_GET("debugger/profiler_frame_history_size")), 60, 10000);
|
int metric_size = CLAMP(int(EDITOR_GET("debugger/profiler_frame_history_size")), 60, 10000);
|
||||||
frame_metrics.resize(metric_size);
|
frame_metrics.resize(metric_size);
|
||||||
|
|
||||||
|
graph_limit = 1000.0f / CLAMP(int(EDITOR_GET("debugger/profiler_target_fps")), 1, 1000);
|
||||||
|
|
||||||
frame_delay = memnew(Timer);
|
frame_delay = memnew(Timer);
|
||||||
frame_delay->set_wait_time(0.1);
|
frame_delay->set_wait_time(0.1);
|
||||||
frame_delay->set_one_shot(true);
|
frame_delay->set_one_shot(true);
|
||||||
|
|
|
@ -871,6 +871,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) {
|
||||||
EDITOR_SETTING(Variant::BOOL, PROPERTY_HINT_NONE, "debugger/auto_switch_to_remote_scene_tree", false, "")
|
EDITOR_SETTING(Variant::BOOL, PROPERTY_HINT_NONE, "debugger/auto_switch_to_remote_scene_tree", false, "")
|
||||||
EDITOR_SETTING(Variant::INT, PROPERTY_HINT_RANGE, "debugger/profiler_frame_history_size", 3600, "60,10000,1")
|
EDITOR_SETTING(Variant::INT, PROPERTY_HINT_RANGE, "debugger/profiler_frame_history_size", 3600, "60,10000,1")
|
||||||
EDITOR_SETTING(Variant::INT, PROPERTY_HINT_RANGE, "debugger/profiler_frame_max_functions", 64, "16,512,1")
|
EDITOR_SETTING(Variant::INT, PROPERTY_HINT_RANGE, "debugger/profiler_frame_max_functions", 64, "16,512,1")
|
||||||
|
EDITOR_SETTING(Variant::INT, PROPERTY_HINT_RANGE, "debugger/profiler_target_fps", 60, "1,1000,1")
|
||||||
EDITOR_SETTING(Variant::FLOAT, PROPERTY_HINT_RANGE, "debugger/remote_scene_tree_refresh_interval", 1.0, "0.1,10,0.01,or_greater")
|
EDITOR_SETTING(Variant::FLOAT, PROPERTY_HINT_RANGE, "debugger/remote_scene_tree_refresh_interval", 1.0, "0.1,10,0.01,or_greater")
|
||||||
EDITOR_SETTING(Variant::FLOAT, PROPERTY_HINT_RANGE, "debugger/remote_inspect_refresh_interval", 0.2, "0.02,10,0.01,or_greater")
|
EDITOR_SETTING(Variant::FLOAT, PROPERTY_HINT_RANGE, "debugger/remote_inspect_refresh_interval", 0.2, "0.02,10,0.01,or_greater")
|
||||||
EDITOR_SETTING(Variant::BOOL, PROPERTY_HINT_NONE, "debugger/profile_native_calls", false, "")
|
EDITOR_SETTING(Variant::BOOL, PROPERTY_HINT_NONE, "debugger/profile_native_calls", false, "")
|
||||||
|
|
Loading…
Reference in New Issue