From 102a0bc5e0dc4cbe7ef1b326b77c3701710d375a Mon Sep 17 00:00:00 2001 From: Yuxuan Shui Date: Sun, 29 Jan 2023 06:35:28 +0000 Subject: [PATCH] backend: mask can be null in blur() Signed-off-by: Yuxuan Shui --- src/backend/backend.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/backend.h b/src/backend/backend.h index 191e8146..b34b96d5 100644 --- a/src/backend/backend.h +++ b/src/backend/backend.h @@ -192,7 +192,7 @@ struct backend_operations { /// mask is. bool (*blur)(backend_t *backend_data, double opacity, void *blur_ctx, void *mask, coord_t mask_dst, const region_t *reg_blur, - const region_t *reg_visible) attr_nonnull(1, 3, 4, 6, 7); + const region_t *reg_visible) attr_nonnull(1, 3, 6, 7); /// Update part of the back buffer with the rendering buffer, then present the /// back buffer onto the target window (if not back buffered, update part of the