linux-dmabuf-v1: add "_with_renderer" suffix to create() function

Make it clear this is a helper consuming a wlr_renderer. We'll
add a lower-level create() function which doesn't take it in the
next commit.
This commit is contained in:
Simon Ser 2022-11-24 10:04:15 +01:00
parent 0611c10909
commit 444d94ef89
3 changed files with 6 additions and 4 deletions

View file

@ -232,7 +232,7 @@ bool wlr_renderer_init_wl_display(struct wlr_renderer *r,
wlr_log(WLR_INFO, "Cannot get renderer DRM FD, disabling wl_drm");
}
if (wlr_linux_dmabuf_v1_create(wl_display, r) == NULL) {
if (wlr_linux_dmabuf_v1_create_with_renderer(wl_display, r) == NULL) {
return false;
}
}