wip: render background and glyphs using pixman

This commit is contained in:
Daniel Eklöf 2019-08-16 20:40:32 +02:00
parent 9259696b18
commit bed7b34c28
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
5 changed files with 134 additions and 78 deletions

4
shm.h
View file

@ -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);