blob: 08e2b8d48882791035786c6e06e474e4c47fbe76 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma once
#include <stdbool.h>
#include <stddef.h>
#include <pixman.h>
#include <wayland-client.h>
struct buffer {
int width;
int height;
int stride;
unsigned long cookie;
bool busy;
bool purge;
size_t size;
void *mmapped;
struct wl_buffer *wl_buf;
pixman_image_t *pix;
};
struct buffer *shm_get_buffer(struct wl_shm *shm, int width, int height, unsigned long cookie);
|