aboutsummaryrefslogtreecommitdiff
path: root/include/backend/drm/drm.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/backend/drm/drm.h')
-rw-r--r--include/backend/drm/drm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/backend/drm/drm.h b/include/backend/drm/drm.h
index 3759ea35..23b06847 100644
--- a/include/backend/drm/drm.h
+++ b/include/backend/drm/drm.h
@@ -24,11 +24,11 @@ struct wlr_drm_plane {
struct wlr_drm_surface mgpu_surf;
/* Buffer to be submitted to the kernel on the next page-flip */
- struct wlr_drm_fb pending_fb;
+ struct wlr_drm_fb *pending_fb;
/* Buffer submitted to the kernel, will be presented on next vblank */
- struct wlr_drm_fb queued_fb;
+ struct wlr_drm_fb *queued_fb;
/* Buffer currently displayed on screen */
- struct wlr_drm_fb current_fb;
+ struct wlr_drm_fb *current_fb;
struct wlr_drm_format_set formats;