You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
431 B
22 lines
431 B
#ifndef UDEV_H
|
|
#define UDEV_H
|
|
|
|
#include <libudev.h>
|
|
|
|
#include "backend/drm/session.h"
|
|
|
|
struct wlr_udev {
|
|
struct udev *udev;
|
|
struct udev_monitor *mon;
|
|
char *drm_path;
|
|
};
|
|
|
|
struct wlr_drm_backend;
|
|
bool wlr_udev_init(struct wlr_drm_backend *backend);
|
|
void wlr_udev_free(struct wlr_udev *udev);
|
|
int wlr_udev_find_gpu(struct wlr_udev *udev, struct wlr_session *session);
|
|
|
|
void wlr_udev_event(struct wlr_drm_backend *backend);
|
|
|
|
#endif
|