mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-15 08:56:26 -05:00
Merge pull request #993 from emersion/bind-wl-drm-in-renderer
render: bind wl_drm in renderer
This commit is contained in:
commit
6eb4b5b54d
6 changed files with 24 additions and 11 deletions
|
|
@ -159,9 +159,9 @@ bool wlr_renderer_format_supported(struct wlr_renderer *r,
|
|||
return r->impl->format_supported(r, fmt);
|
||||
}
|
||||
|
||||
void wlr_renderer_init_wl_shm(struct wlr_renderer *r,
|
||||
struct wl_display *display) {
|
||||
if (wl_display_init_shm(display)) {
|
||||
void wlr_renderer_init_wl_display(struct wlr_renderer *r,
|
||||
struct wl_display *wl_display) {
|
||||
if (wl_display_init_shm(wl_display)) {
|
||||
wlr_log(L_ERROR, "Failed to initialize shm");
|
||||
return;
|
||||
}
|
||||
|
|
@ -174,11 +174,16 @@ void wlr_renderer_init_wl_shm(struct wlr_renderer *r,
|
|||
}
|
||||
|
||||
for (size_t i = 0; i < len; ++i) {
|
||||
// These formats are already added by default
|
||||
if (formats[i] != WL_SHM_FORMAT_ARGB8888 &&
|
||||
formats[i] != WL_SHM_FORMAT_XRGB8888) {
|
||||
wl_display_add_shm_format(display, formats[i]);
|
||||
wl_display_add_shm_format(wl_display, formats[i]);
|
||||
}
|
||||
}
|
||||
|
||||
if (r->impl->init_wl_display) {
|
||||
r->impl->init_wl_display(r, wl_display);
|
||||
}
|
||||
}
|
||||
|
||||
struct wlr_renderer *wlr_renderer_autocreate(struct wlr_egl *egl,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue