diff options
author | Tom Englund <[email protected]> | 2024-10-28 19:02:52 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-10-28 18:02:52 +0000 |
commit | c7315617eb6186912d03232e1968f32b88f153f2 (patch) | |
tree | 7e22a153c332378439c72ebf4bb06f6069411527 /src/desktop/Popup.hpp | |
parent | d49a1334a8af7c704626cdf1746cb72415ad6d0d (diff) | |
download | Hyprland-c7315617eb6186912d03232e1968f32b88f153f2.tar.gz Hyprland-c7315617eb6186912d03232e1968f32b88f153f2.zip |
internal: few more marginal optimisations from profiling (#8271)
* deco: reduce local temporars and function calls
profiling shows this is a high used function, reduce the amount of
function calls and local temporar copies and also check if we even need
to add extents at all in the loop.
* popup: optimize bfhelper in popups
pass nodes as const reference and reserve the size of the children node
vector help reduce the reallocations.
* procotol: make compositor bfhelper use const ref
use const ref for nodes and reserve second nodes vector size to reduce
amount of reallocation needed.
Diffstat (limited to 'src/desktop/Popup.hpp')
-rw-r--r-- | src/desktop/Popup.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/desktop/Popup.hpp b/src/desktop/Popup.hpp index 04996612..f34b8a2c 100644 --- a/src/desktop/Popup.hpp +++ b/src/desktop/Popup.hpp @@ -81,5 +81,5 @@ class CPopup { Vector2D localToGlobal(const Vector2D& rel); Vector2D t1ParentCoords(); - static void bfHelper(std::vector<CPopup*> nodes, std::function<void(CPopup*, void*)> fn, void* data); + static void bfHelper(std::vector<CPopup*> const& nodes, std::function<void(CPopup*, void*)> fn, void* data); }; |