diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2015-05-21 12:54:31 +0900 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2016-02-27 15:16:37 +0900 |
commit | f5d968cbba3c9b7ec202161f2157d8d64778c817 (patch) | |
tree | aefb4207f9cff1ee6eb6037c4c36e80aa90d5d8c /src/drmmode_display.h | |
parent | e87365117acbd80b7d80fbb5eb30890ef7153291 (diff) |
Make DRM event queue xf86CrtcPtr based instead of ScrnInfoPtr based
This allows for a minor simplification of the code.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'src/drmmode_display.h')
-rw-r--r-- | src/drmmode_display.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/drmmode_display.h b/src/drmmode_display.h index ab6c5908..99c6c917 100644 --- a/src/drmmode_display.h +++ b/src/drmmode_display.h @@ -60,21 +60,16 @@ typedef struct { } drmmode_rec, *drmmode_ptr; typedef struct { - drmmode_ptr drmmode; unsigned old_fb_id; int flip_count; void *event_data; unsigned int fe_frame; uint64_t fe_usec; + xf86CrtcPtr fe_crtc; radeon_drm_handler_proc handler; radeon_drm_abort_proc abort; } drmmode_flipdata_rec, *drmmode_flipdata_ptr; -typedef struct { - drmmode_flipdata_ptr flipdata; - Bool dispatch_me; -} drmmode_flipevtcarrier_rec, *drmmode_flipevtcarrier_ptr; - struct drmmode_scanout { struct radeon_bo *bo; PixmapPtr pixmap; |