diff options
author | emersion <contact@emersion.fr> | 2018-01-25 19:15:20 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-01-25 19:15:20 +0100 |
commit | 4223fbc76330f000a209c0f03426fd3867f21057 (patch) | |
tree | 8a012bd174e3fbb1922e2e69c5e7feccd0c8973a /include/wlr | |
parent | 3f96427d0854ef38ee295724ebd36dcb74c0659c (diff) |
rootston: damage tracking scale support
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/util/region.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/wlr/util/region.h b/include/wlr/util/region.h new file mode 100644 index 00000000..416adbf2 --- /dev/null +++ b/include/wlr/util/region.h @@ -0,0 +1,9 @@ +#ifndef WLR_UTIL_REGION_H +#define WLR_UTIL_REGION_H + +#include <pixman.h> + +void wlr_region_scale(pixman_region32_t *dst, pixman_region32_t *src, + float scale); + +#endif |