aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/wlr/util/box.h5
-rw-r--r--util/box.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/include/wlr/util/box.h b/include/wlr/util/box.h
index e01b351e..84df50a6 100644
--- a/include/wlr/util/box.h
+++ b/include/wlr/util/box.h
@@ -99,6 +99,11 @@ void wlr_fbox_transform(struct wlr_fbox *dest, const struct wlr_fbox *box,
*/
bool wlr_box_equal(const struct wlr_box *a, const struct wlr_box *b);
+/**
+ * Returns true if the two boxes are equal, false otherwise.
+ */
+bool wlr_fbox_equal(const struct wlr_fbox *a, const struct wlr_fbox *b);
+
#endif
#endif
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