types/wlr_box: remove unused wlr_box_from_pixman_box32 and wlr_box_rotated_bounds functions

This commit is contained in:
Simon Zeni 2021-07-01 15:59:17 -04:00 committed by Simon Ser
parent 3fdf8cf07e
commit d975f35bba
2 changed files with 0 additions and 45 deletions

View file

@ -39,11 +39,4 @@ bool wlr_box_empty(const struct wlr_box *box);
void wlr_box_transform(struct wlr_box *dest, const struct wlr_box *box,
enum wl_output_transform transform, int width, int height);
/**
* Creates the smallest box that contains the box rotated about its center.
*/
void wlr_box_rotated_bounds(struct wlr_box *dest, const struct wlr_box *box, float rotation);
void wlr_box_from_pixman_box32(struct wlr_box *dest, const pixman_box32_t box);
#endif