aboutsummaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-01-15 11:18:17 +0100
committerSimon Ser <contact@emersion.fr>2021-01-15 11:18:17 +0100
commitf0303978e3a0752c207b471fb1f92a78a3ec13b9 (patch)
tree3b0d561b237039f6cf27d037194c5315c69d8389 /render
parent642b349e94cfd78d3719a3fbaeba9904b1e41104 (diff)
render/gbm_allocator: log GBM backend name
Diffstat (limited to 'render')
-rw-r--r--render/gbm_allocator.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/render/gbm_allocator.c b/render/gbm_allocator.c
index da29501a..9ceb71d6 100644
--- a/render/gbm_allocator.c
+++ b/render/gbm_allocator.c
@@ -154,6 +154,9 @@ struct wlr_gbm_allocator *wlr_gbm_allocator_create(int fd) {
return NULL;
}
+ wlr_log(WLR_DEBUG, "Created GBM allocator with backend %s",
+ gbm_device_get_backend_name(alloc->gbm_device));
+
return alloc;
}