diff options
author | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2022-10-05 10:56:19 +0200 |
---|---|---|
committer | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2022-10-18 12:47:40 +0200 |
commit | b8031bb7d6d0bed33c058db20b58800e615538e3 (patch) | |
tree | 0017468ac78879e633a1a7f874364e6fc1bc2ae2 /scene/gui/control.h | |
parent | 2e3662acbd8586697db38569785cc9f97dff945e (diff) | |
download | redot-engine-b8031bb7d6d0bed33c058db20b58800e615538e3.tar.gz |
Code simplifications
1. Viewport::get_visible_rect().position is always zero.
So Control::get_window_rect is identical to Control::get_global_rect.
Remove Control::get_window_rect since it is not used in the source code.
2. sqrt(a * a) = abs(a) for doubles
3. Simplify affine_inverse combination
4. Simplify calculation in shaders
Diffstat (limited to 'scene/gui/control.h')
-rw-r--r-- | scene/gui/control.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scene/gui/control.h b/scene/gui/control.h index e526690cbe..0c7ffeaf96 100644 --- a/scene/gui/control.h +++ b/scene/gui/control.h @@ -445,7 +445,6 @@ public: Rect2 get_rect() const; Rect2 get_global_rect() const; Rect2 get_screen_rect() const; - Rect2 get_window_rect() const; ///< use with care, as it blocks waiting for the rendering server Rect2 get_anchorable_rect() const override; void set_scale(const Vector2 &p_scale); |