1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2024-11-11 13:51:02 -05:00

backend: explicitly initialize corner_radius

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui 2021-11-08 00:20:52 +00:00
parent ffb8bc5b29
commit 8eb5bb08f8
No known key found for this signature in database
GPG key ID: D3A4405BE6CC17F4

View file

@ -469,6 +469,7 @@ struct backend_image *default_new_backend_image(int w, int h) {
ret->eheight = h;
ret->ewidth = w;
ret->color_inverted = false;
ret->corner_radius = 0;
return ret;
}