summaryrefslogtreecommitdiff
path: root/include/types
diff options
context:
space:
mode:
authorErik Reider <[email protected]>2024-01-02 01:19:48 +0100
committerErik Reider <[email protected]>2024-01-04 02:11:25 +0100
commitc15af4a182314d8384fc6b28e7c3fc58c0352b83 (patch)
tree841c17acede5ead7b8c08c9668d0b148ad5c26e4 /include/types
parent1a6918f948be034e65c50af8969d090b5e762dc1 (diff)
Added back shadow effect
Diffstat (limited to 'include/types')
-rw-r--r--include/types/fx/shadow_data.h3
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;
};