mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-13 04:27:47 -05:00
29 lines
489 B
C
29 lines
489 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#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;
|
|
void *mmapped;
|
|
|
|
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);
|
|
void shm_fini(void);
|