aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/wm/util.c
blob: 28b0e546090d313298bbb956825571972a4b723b (plain)
1
2
3
4
5
6
7
8
9
10
#include "wm.h"

void
scale_box(struct wlr_box *box, float scale)
{
    box->width =  ROUND((box->x + box->width) * scale) -  ROUND(box->x * scale);
    box->height = ROUND((box->y + box->height) * scale) - ROUND(box->y * scale);
    box->x = ROUND(box->x * scale);
    box->y = ROUND(box->y * scale);
}