summaryrefslogtreecommitdiff
path: root/include/types
diff options
context:
space:
mode:
authorErik Reider <[email protected]>2024-01-08 09:23:32 +0100
committerGitHub <[email protected]>2024-01-08 09:23:32 +0100
commitb875d712407115b381915495e50875cfc523b76d (patch)
tree4f050bcb1a18179accd390749420d00714664691 /include/types
parent6759e8da7ab53a46b0eb04e5045b8c67262c3a11 (diff)
parentcc83f41dbfc12af350c37f46677b82a64df801b8 (diff)
Merge pull request #27 from wlrfx/add_back_xkbcommon_dep
Meson fixes
Diffstat (limited to 'include/types')
-rw-r--r--include/types/fx/shadow_data.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/types/fx/shadow_data.h b/include/types/fx/shadow_data.h
deleted file mode 100644
index d96a084..0000000
--- a/include/types/fx/shadow_data.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef TYPES_DECORATION_DATA
-#define TYPES_DECORATION_DATA
-
-#include <stdbool.h>
-#include <wlr/util/addon.h>
-#include <wlr/render/pass.h>
-
-struct shadow_data {
- bool enabled;
- struct wlr_render_color color;
- float blur_sigma;
-};
-
-struct shadow_data shadow_data_get_default(void);
-
-bool scene_buffer_has_shadow(struct shadow_data *data);
-
-#endif