diff --git a/include/wlr/types/wlr_box.h b/include/wlr/types/wlr_box.h index 40585ab1..73e51b34 100644 --- a/include/wlr/types/wlr_box.h +++ b/include/wlr/types/wlr_box.h @@ -18,6 +18,11 @@ struct wlr_box { int width, height; }; +struct wlr_fbox { + double x, y; + double width, height; +}; + void wlr_box_closest_point(const struct wlr_box *box, double x, double y, double *dest_x, double *dest_y);