aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorAlexander Orzechowski <orzechowski.alexander@gmail.com>2022-08-15 06:04:42 -0400
committerAlexander Orzechowski <orzechowski.alexander@gmail.com>2022-08-15 06:14:59 -0400
commit1d08ef234e6fcb6cdd2ca128f0259497aaaaddf8 (patch)
tree44be667238b12388031c79d6857248952671dd45 /util
parent9f3bd64a332c1bacee57d394bdaf0b4d06153ab0 (diff)
util/box: Introduce wlr_fbox_equal
Diffstat (limited to 'util')
-rw-r--r--util/box.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/box.c b/util/box.c
index cddff76e..d7d22617 100644
--- a/util/box.c
+++ b/util/box.c
@@ -179,4 +179,9 @@ bool wlr_box_equal(const struct wlr_box *a, const struct wlr_box *b) {
a->width == b->width && a->height == b->height;
}
+bool wlr_fbox_equal(const struct wlr_fbox *a, const struct wlr_fbox *b) {
+ return a->x == b->x && a->y == b->y &&
+ a->width == b->width && a->height == b->height;
+}
+
#endif