diff options
author | Erik Reider <[email protected]> | 2024-01-02 01:19:48 +0100 |
---|---|---|
committer | Erik Reider <[email protected]> | 2024-01-04 02:11:25 +0100 |
commit | c15af4a182314d8384fc6b28e7c3fc58c0352b83 (patch) | |
tree | 841c17acede5ead7b8c08c9668d0b148ad5c26e4 /include/types/fx | |
parent | 1a6918f948be034e65c50af8969d090b5e762dc1 (diff) |
Added back shadow effect
Diffstat (limited to 'include/types/fx')
-rw-r--r-- | include/types/fx/shadow_data.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/types/fx/shadow_data.h b/include/types/fx/shadow_data.h index 804acfe..d96a084 100644 --- a/include/types/fx/shadow_data.h +++ b/include/types/fx/shadow_data.h @@ -3,10 +3,11 @@ #include <stdbool.h> #include <wlr/util/addon.h> +#include <wlr/render/pass.h> struct shadow_data { bool enabled; - float *color; + struct wlr_render_color color; float blur_sigma; }; |