aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorManuel Stoeckl <code@mstoeckl.com>2023-11-23 07:54:23 -0500
committerSimon Ser <contact@emersion.fr>2023-11-23 20:42:04 +0100
commit39b9c0d6baeda0609dfe248fc5b86fb65ff69c2c (patch)
tree9e6347ac7c9b74a39ce07a6644221556d6fc1a97 /include
parent47e6a1164c25b5b49bfb919a681b88641d2ce37c (diff)
common: Drop unused render_background_image
And the associated background_mode enum.
Diffstat (limited to 'include')
-rw-r--r--include/background-image.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/include/background-image.h b/include/background-image.h
index a97ef375..5ecd4c53 100644
--- a/include/background-image.h
+++ b/include/background-image.h
@@ -1,20 +1,7 @@
#ifndef _SWAY_BACKGROUND_IMAGE_H
#define _SWAY_BACKGROUND_IMAGE_H
-#include "cairo_util.h"
+#include <cairo.h>
-enum background_mode {
- BACKGROUND_MODE_STRETCH,
- BACKGROUND_MODE_FILL,
- BACKGROUND_MODE_FIT,
- BACKGROUND_MODE_CENTER,
- BACKGROUND_MODE_TILE,
- BACKGROUND_MODE_SOLID_COLOR,
- BACKGROUND_MODE_INVALID,
-};
-
-enum background_mode parse_background_mode(const char *mode);
cairo_surface_t *load_background_image(const char *path);
-void render_background_image(cairo_t *cairo, cairo_surface_t *image,
- enum background_mode mode, int buffer_width, int buffer_height);
#endif