diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/box.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -171,3 +171,12 @@ void wlr_fbox_transform(struct wlr_fbox *dest, const struct wlr_fbox *box, break; } } + +#ifdef WLR_USE_UNSTABLE + +bool wlr_box_equal(const struct wlr_box *a, const struct wlr_box *b) { + return a->x == b->x && a->y == b->y && + a->width == b->width && a->height == b->height; +} + +#endif |