cage/util.h
Simon Ser 1ef4cf5b8b Update wlr_box includes to util/box.h
The wlroots header has been moved upstream.
2021-08-17 16:54:34 +02:00

11 lines
219 B
C

#ifndef CG_UTIL_H
#define CG_UTIL_H
#include <wlr/util/box.h>
/** Apply scale to a width or height. */
int scale_length(int length, int offset, float scale);
void scale_box(struct wlr_box *box, float scale);
#endif