mirror of
https://github.com/cage-kiosk/cage.git
synced 2025-11-02 09:01:41 -05:00
11 lines
224 B
C
11 lines
224 B
C
#ifndef CG_UTIL_H
|
|
#define CG_UTIL_H
|
|
|
|
#include <wlr/types/wlr_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
|