diff options
Diffstat (limited to 'include/render/allocator/drm_dumb.h')
-rw-r--r-- | include/render/allocator/drm_dumb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/render/allocator/drm_dumb.h b/include/render/allocator/drm_dumb.h index 7e37acfb..23c150bc 100644 --- a/include/render/allocator/drm_dumb.h +++ b/include/render/allocator/drm_dumb.h @@ -7,7 +7,7 @@ struct wlr_drm_dumb_buffer { struct wlr_buffer base; - struct wl_list link; // wlr_drm_dumb_allocator::buffers + struct wl_list link; // wlr_drm_dumb_allocator.buffers int drm_fd; // -1 if the allocator has been destroyed struct wlr_dmabuf_attributes dmabuf; @@ -23,7 +23,7 @@ struct wlr_drm_dumb_buffer { struct wlr_drm_dumb_allocator { struct wlr_allocator base; - struct wl_list buffers; // wlr_drm_dumb_buffer::link + struct wl_list buffers; // wlr_drm_dumb_buffer.link int drm_fd; }; |