mirror of
https://github.com/swaywm/sway.git
synced 2025-04-05 20:07:46 +03:00
Move swaybg background rendering into common/
swaylock will use it too
This commit is contained in:
parent
3852a710ca
commit
a28730edee
4 changed files with 133 additions and 119 deletions
19
include/background-image.h
Normal file
19
include/background-image.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue