Fix indentation
parent
af1307b420
commit
10367226f8
|
@ -24,11 +24,11 @@ struct zwlr_export_dmabuf_frame_v1;
|
||||||
struct wl_output;
|
struct wl_output;
|
||||||
|
|
||||||
enum dmabuf_capture_status {
|
enum dmabuf_capture_status {
|
||||||
DMABUF_CAPTURE_UNSPEC = 0,
|
DMABUF_CAPTURE_UNSPEC = 0,
|
||||||
DMABUF_CAPTURE_IN_PROGRESS,
|
DMABUF_CAPTURE_IN_PROGRESS,
|
||||||
DMABUF_CAPTURE_CANCELLED,
|
DMABUF_CAPTURE_CANCELLED,
|
||||||
DMABUF_CAPTURE_FATAL,
|
DMABUF_CAPTURE_FATAL,
|
||||||
DMABUF_CAPTURE_DONE
|
DMABUF_CAPTURE_DONE
|
||||||
};
|
};
|
||||||
|
|
||||||
struct dmabuf_plane {
|
struct dmabuf_plane {
|
||||||
|
@ -53,12 +53,12 @@ struct dmabuf_capture {
|
||||||
struct zwlr_export_dmabuf_frame_v1* zwlr_frame;
|
struct zwlr_export_dmabuf_frame_v1* zwlr_frame;
|
||||||
struct dmabuf_frame frame;
|
struct dmabuf_frame frame;
|
||||||
|
|
||||||
bool overlay_cursor;
|
bool overlay_cursor;
|
||||||
struct wl_output* output;
|
struct wl_output* output;
|
||||||
enum dmabuf_capture_status status;
|
enum dmabuf_capture_status status;
|
||||||
void (*on_done)(struct dmabuf_capture*);
|
void (*on_done)(struct dmabuf_capture*);
|
||||||
|
|
||||||
void* userdata;
|
void* userdata;
|
||||||
};
|
};
|
||||||
|
|
||||||
int dmabuf_capture_start(struct dmabuf_capture* self);
|
int dmabuf_capture_start(struct dmabuf_capture* self);
|
||||||
|
|
Loading…
Reference in New Issue