common: Drop unused render_background_image

And the associated background_mode enum.
This commit is contained in:
Manuel Stoeckl 2023-11-23 07:54:23 -05:00 committed by Simon Ser
parent 47e6a1164c
commit 39b9c0d6ba
2 changed files with 3 additions and 100 deletions

View file

@ -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