mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 23:22:24 +00:00
a53ab146fe
This function allows backends to return the DRM FD they are using. This will allow the allocator and the renderer to use the right device.
9 lines
124 B
C
9 lines
124 B
C
#ifndef BACKEND_H
|
|
#define BACKEND_H
|
|
|
|
#include <wlr/backend.h>
|
|
|
|
int backend_get_drm_fd(struct wlr_backend *backend);
|
|
|
|
#endif
|