diff options
author | Marius Hanl <mariushanl@web.de> | 2023-12-22 17:18:14 +0100 |
---|---|---|
committer | Marius Hanl <mariushanl@web.de> | 2024-05-15 20:50:13 +0200 |
commit | af6a4f300e7abafebb65f0ffafac5f4ff19f85dc (patch) | |
tree | 08ea1bbb2cde3d8768c4c59f88fd1db18f2916e1 /editor/create_dialog.h | |
parent | 9f4dbc64560cbea9722d866748d63eddb29d383f (diff) | |
download | redot-engine-af6a4f300e7abafebb65f0ffafac5f4ff19f85dc.tar.gz |
Improve performance of the 'Create New Node' dialog
- Merged 3 for loops into 1 and save Vector allocation
- Use get_instance_base_type() or get_global_name() instead of get_language()->get_global_class_name() for performance considerations
- Use StringName where appropriate
Diffstat (limited to 'editor/create_dialog.h')
-rw-r--r-- | editor/create_dialog.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/editor/create_dialog.h b/editor/create_dialog.h index 12385747c2..d2866e9f04 100644 --- a/editor/create_dialog.h +++ b/editor/create_dialog.h @@ -68,10 +68,9 @@ class CreateDialog : public ConfirmationDialog { HashSet<StringName> type_blacklist; void _update_search(); - bool _should_hide_type(const String &p_type) const; - void _add_type(const String &p_type, const TypeCategory p_type_category); - void _configure_search_option_item(TreeItem *r_item, const String &p_type, const TypeCategory p_type_category); - String _top_result(const Vector<String> &p_candidates, const String &p_search_text) const; + bool _should_hide_type(const StringName &p_type) const; + void _add_type(const StringName &p_type, TypeCategory p_type_category); + void _configure_search_option_item(TreeItem *r_item, const StringName &p_type, TypeCategory p_type_category); float _score_type(const String &p_type, const String &p_search) const; bool _is_type_preferred(const String &p_type) const; |