mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-18 06:47:31 -04:00
wlr_output: Introduce struct wlr_output_commit
This commit is contained in:
parent
1b0694b794
commit
c299c13d13
12 changed files with 145 additions and 49 deletions
|
|
@ -27,6 +27,12 @@
|
|||
|
||||
struct wlr_x11_backend;
|
||||
|
||||
struct wlr_x11_output_commit {
|
||||
struct wl_list link; // wlr_x11_output::commits;
|
||||
uint32_t serial;
|
||||
struct wlr_output_commit commit;
|
||||
};
|
||||
|
||||
struct wlr_x11_output {
|
||||
struct wlr_output wlr_output;
|
||||
struct wlr_x11_backend *x11;
|
||||
|
|
@ -50,6 +56,8 @@ struct wlr_x11_output {
|
|||
struct wlr_swapchain *swapchain;
|
||||
xcb_render_picture_t pic;
|
||||
} cursor;
|
||||
|
||||
struct wl_list commits; // wlr_x11_output_commit::link
|
||||
};
|
||||
|
||||
struct wlr_x11_touchpoint {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue