mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
19 lines
399 B
C
19 lines
399 B
C
#ifndef _WLR_INTERNAL_UDEV_H
|
|
#define _WLR_INTERNAL_UDEV_H
|
|
|
|
#include <libudev.h>
|
|
#include <wlr/session.h>
|
|
#include <wayland-server.h>
|
|
#include <wlr/backend/udev.h>
|
|
|
|
struct wlr_udev {
|
|
struct udev *udev;
|
|
struct udev_monitor *mon;
|
|
char *drm_path;
|
|
struct wl_event_source *event;
|
|
struct wl_signal invalidate_drm;
|
|
};
|
|
|
|
int wlr_udev_find_gpu(struct wlr_udev *udev, struct wlr_session *session);
|
|
|
|
#endif
|