diff options
Diffstat (limited to 'types/fx')
-rw-r--r-- | types/fx/shadow_data.c | 6 |
1 files changed, 2 insertions, 4 deletions
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 <assert.h> -#include <stdlib.h> -#include <string.h> #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, }; } |