diff options
author | emersion <[email protected]> | 2018-04-04 20:16:35 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2018-04-04 20:16:35 -0400 |
commit | f2153f3f28c8aa2e6738610abf09b2e2396d891a (patch) | |
tree | 4702abb406a59fb8588cbd2019741e99d40bcbfe /include/background-image.h | |
parent | 3852a710ca62a76f4fd9c6ff9d28e7e5d5fcf78d (diff) | |
parent | 5d444b34f6af17894e2808c9d25948db625dabde (diff) |
Merge pull request #1705 from swaywm/swaylock-layers
Port swaylock to layer shell
Diffstat (limited to 'include/background-image.h')
-rw-r--r-- | include/background-image.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/background-image.h b/include/background-image.h new file mode 100644 index 00000000..15935ffd --- /dev/null +++ b/include/background-image.h @@ -0,0 +1,20 @@ +#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, + 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 |