mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-27 01:40:16 -05:00
rgba: drop alpha channel support
This commit is contained in:
parent
69e7744e5d
commit
1e2a7e77f0
4 changed files with 43 additions and 53 deletions
4
main.c
4
main.c
|
|
@ -32,8 +32,8 @@
|
|||
#define min(x, y) ((x) < (y) ? (x) : (y))
|
||||
#define max(x, y) ((x) > (y) ? (x) : (y))
|
||||
|
||||
static const struct rgba default_foreground = {0.86, 0.86, 0.86, 1.0};
|
||||
static const struct rgba default_background = {0.067, 0.067, 0.067, 1.0};
|
||||
static const struct rgb default_foreground = {0.86, 0.86, 0.86};
|
||||
static const struct rgb default_background = {0.067, 0.067, 0.067};
|
||||
|
||||
static void
|
||||
shm_format(void *data, struct wl_shm *wl_shm, uint32_t format)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue