Merge branch 'gbm-map' into 'master'

Draft: render/allocator/gbm: implement begin_data_ptr_access

See merge request wlroots/wlroots!4408
This commit is contained in:
Simon Ser 2026-01-22 03:05:26 +00:00
commit 4803a1d1c7
2 changed files with 43 additions and 0 deletions

View file

@ -12,6 +12,7 @@ struct wlr_gbm_buffer {
struct wl_list link; // wlr_gbm_allocator.buffers
struct gbm_bo *gbm_bo; // NULL if the gbm_device has been destroyed
void *gbm_map_data; // NULL unless we have an active mapping
struct wlr_dmabuf_attributes dmabuf;
};