diff options
Diffstat (limited to 'include/backend/drm')
-rw-r--r-- | include/backend/drm/drm.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/backend/drm/drm.h b/include/backend/drm/drm.h index 3f2215fb..c3391dcf 100644 --- a/include/backend/drm/drm.h +++ b/include/backend/drm/drm.h @@ -129,13 +129,14 @@ struct wlr_drm_connector { struct wl_list link; - /* + /* CRTC ID if a page-flip is pending, zero otherwise. + * * We've asked for a state change in the kernel, and yet to receive a * notification for its completion. Currently, the kernel only has a * queue length of 1, and no way to modify your submissions after * they're sent. */ - bool pageflip_pending; + uint32_t pending_page_flip_crtc; }; struct wlr_drm_backend *get_drm_backend_from_backend( |