mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-18 05:34:02 -04:00
Remove all references to cairo; we now use pixman only
This commit is contained in:
parent
81107753bf
commit
f45e5c6aef
8 changed files with 14 additions and 66 deletions
7
shm.h
7
shm.h
|
|
@ -3,7 +3,6 @@
|
|||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <cairo.h>
|
||||
#include <pixman.h>
|
||||
#include <wayland-client.h>
|
||||
|
||||
|
|
@ -19,11 +18,9 @@ struct buffer {
|
|||
struct wl_buffer *wl_buf;
|
||||
|
||||
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);
|
||||
struct buffer *shm_get_buffer(
|
||||
struct wl_shm *shm, int width, int height, size_t copies);
|
||||
void shm_fini(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue