From e1f4bc5996b1c77c7fa8536b7c03d9eb4140227d Mon Sep 17 00:00:00 2001 From: William McKinnon Date: Mon, 15 Apr 2024 01:32:22 -0400 Subject: feat: add functions required by SwayFX (#35) --- types/fx/shadow_data.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'types/fx/shadow_data.c') diff --git a/types/fx/shadow_data.c b/types/fx/shadow_data.c index a8ad8f9..d74cadc 100644 --- a/types/fx/shadow_data.c +++ b/types/fx/shadow_data.c @@ -1,14 +1,12 @@ -#include -#include -#include #include "scenefx/types/fx/shadow_data.h" -#include "wlr/util/log.h" struct shadow_data shadow_data_get_default(void) { return (struct shadow_data) { .blur_sigma = 20, .color = {0.0f, 0.0f, 0.0f, 0.5f}, .enabled = false, + .offset_x = 0.0f, + .offset_y = 0.0f, }; } -- cgit v1.2.3