aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'include/drm/drm_mode.h')
-rw-r--r--include/drm/drm_mode.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/drm/drm_mode.h b/include/drm/drm_mode.h
index 852505e7..1fd30266 100644
--- a/include/drm/drm_mode.h
+++ b/include/drm/drm_mode.h
@@ -265,4 +265,15 @@ struct drm_mode_crtc_lut {
265 __u64 blue; 265 __u64 blue;
266}; 266};
267 267
268#define DRM_MODE_PAGE_FLIP_EVENT 0x01
269#define DRM_MODE_PAGE_FLIP_FLAGS DRM_MODE_PAGE_FLIP_EVENT
270
271struct drm_mode_crtc_page_flip {
272 uint32_t crtc_id;
273 uint32_t fb_id;
274 uint32_t flags;
275 uint32_t reserved;
276 uint64_t user_data;
277};
278
268#endif 279#endif