mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-23 05:33:57 -04:00
wip: render background and glyphs using pixman
This commit is contained in:
parent
9259696b18
commit
bed7b34c28
5 changed files with 134 additions and 78 deletions
4
shm.h
4
shm.h
|
|
@ -4,11 +4,13 @@
|
|||
#include <stddef.h>
|
||||
|
||||
#include <cairo.h>
|
||||
#include <pixman.h>
|
||||
#include <wayland-client.h>
|
||||
|
||||
struct buffer {
|
||||
int width;
|
||||
int height;
|
||||
int stride;
|
||||
|
||||
bool busy;
|
||||
size_t size;
|
||||
|
|
@ -19,6 +21,8 @@ struct buffer {
|
|||
size_t copies;
|
||||
cairo_surface_t **cairo_surface;
|
||||
cairo_t **cairo;
|
||||
|
||||
pixman_image_t **pix;
|
||||
};
|
||||
|
||||
struct buffer *shm_get_buffer(struct wl_shm *shm, int width, int height, size_t copies);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue