blob: 7e37acfbcbb462a0aa758ef0e5abf821e602c955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef RENDER_ALLOCATOR_DRM_DUMB_H
#define RENDER_ALLOCATOR_DRM_DUMB_H
#include <wlr/render/dmabuf.h>
#include <wlr/types/wlr_buffer.h>
#include "render/allocator/allocator.h"
struct wlr_drm_dumb_buffer {
struct wlr_buffer base;
struct wl_list link; // wlr_drm_dumb_allocator::buffers
int drm_fd; // -1 if the allocator has been destroyed
struct wlr_dmabuf_attributes dmabuf;
uint32_t format;
uint32_t handle;
uint32_t stride;
uint32_t width, height;
uint64_t size;
void *data;
};
struct wlr_drm_dumb_allocator {
struct wlr_allocator base;
struct wl_list buffers; // wlr_drm_dumb_buffer::link
int drm_fd;
};
/**
* Creates a new drm dumb allocator from a DRM FD.
*
* Does not take ownership over the FD.
*/
struct wlr_allocator *wlr_drm_dumb_allocator_create(int fd);
#endif
|