aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/devices
diff options
context:
space:
mode:
authorVaxry <[email protected]>2024-06-19 16:20:06 +0200
committerVaxry <[email protected]>2024-06-19 16:20:15 +0200
commitfb15b7aa2a9bba0f0693f84d0c65d386942583f8 (patch)
treed4403944b5d6a3e03d2262f03a7d0b3ed6ffae24 /src/devices
parent6e5804b53de753f24953d9d647940df66bc68f6d (diff)
downloadHyprland-fb15b7aa2a9bba0f0693f84d0c65d386942583f8.tar.gz
Hyprland-fb15b7aa2a9bba0f0693f84d0c65d386942583f8.zip
core: Move to hyprutils for Math
Moves CRegion, CBox and Vector2D over to hyprutils. Requires hyprutils>=0.1.4
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/IKeyboard.hpp2
-rw-r--r--src/devices/IPointer.hpp2
-rw-r--r--src/devices/ITouch.hpp2
-rw-r--r--src/devices/Tablet.hpp4
4 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/IKeyboard.hpp b/src/devices/IKeyboard.hpp
index ec58ff5b..b1757a18 100644
--- a/src/devices/IKeyboard.hpp
+++ b/src/devices/IKeyboard.hpp
@@ -3,7 +3,7 @@
#include "IHID.hpp"
#include "../helpers/WLListener.hpp"
#include "../macros.hpp"
-#include "../helpers/Vector2D.hpp"
+#include "../helpers/math/Math.hpp"
#include <xkbcommon/xkbcommon.h>
diff --git a/src/devices/IPointer.hpp b/src/devices/IPointer.hpp
index e2347c95..b2995b2f 100644
--- a/src/devices/IPointer.hpp
+++ b/src/devices/IPointer.hpp
@@ -3,7 +3,7 @@
#include "IHID.hpp"
#include "../helpers/WLListener.hpp"
#include "../macros.hpp"
-#include "../helpers/Vector2D.hpp"
+#include "../helpers/math/Math.hpp"
struct wlr_pointer;
diff --git a/src/devices/ITouch.hpp b/src/devices/ITouch.hpp
index 5929be02..b9cbf2ae 100644
--- a/src/devices/ITouch.hpp
+++ b/src/devices/ITouch.hpp
@@ -3,7 +3,7 @@
#include "IHID.hpp"
#include "../helpers/WLListener.hpp"
#include "../macros.hpp"
-#include "../helpers/Vector2D.hpp"
+#include "../helpers/math/Math.hpp"
struct wlr_touch;
diff --git a/src/devices/Tablet.hpp b/src/devices/Tablet.hpp
index 1805f3ba..ada2cf89 100644
--- a/src/devices/Tablet.hpp
+++ b/src/devices/Tablet.hpp
@@ -3,8 +3,8 @@
#include "IHID.hpp"
#include "../helpers/WLListener.hpp"
#include "../macros.hpp"
-#include "../helpers/Vector2D.hpp"
-#include "../helpers/Box.hpp"
+#include "../helpers/math/Math.hpp"
+#include "../helpers/math/Math.hpp"
struct wlr_tablet;
struct wlr_tablet_tool;