Move swaybg background rendering into common/

swaylock will use it too
This commit is contained in:
Drew DeVault 2018-04-02 21:57:13 -04:00
parent 3852a710ca
commit a28730edee
4 changed files with 133 additions and 119 deletions

View file

@ -0,0 +1,19 @@
#ifndef _SWAY_BACKGROUND_IMAGE_H
#define _SWAY_BACKGROUND_IMAGE_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,
};
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,
int buffer_scale);
#endif