mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
Changed invalidate interface.
This commit is contained in:
parent
de44994dfc
commit
5df56653ab
3 changed files with 71 additions and 14 deletions
|
|
@ -1,18 +1,29 @@
|
|||
#ifndef _WLR_INTERNAL_UDEV_H
|
||||
#define _WLR_INTERNAL_UDEV_H
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <libudev.h>
|
||||
#include <wlr/session.h>
|
||||
#include <wayland-server.h>
|
||||
#include <wlr/backend/udev.h>
|
||||
|
||||
struct wlr_udev_dev {
|
||||
dev_t dev;
|
||||
struct wl_signal invalidate;
|
||||
|
||||
struct wl_list link;
|
||||
};
|
||||
|
||||
struct wlr_udev {
|
||||
struct udev *udev;
|
||||
struct udev_monitor *mon;
|
||||
struct wl_event_source *event;
|
||||
struct wl_signal invalidate_drm;
|
||||
|
||||
struct wl_list devices;
|
||||
};
|
||||
|
||||
int wlr_udev_find_gpu(struct wlr_udev *udev, struct wlr_session *session);
|
||||
bool wlr_udev_signal_add(struct wlr_udev *udev, dev_t dev, struct wl_listener *listener);
|
||||
void wlr_udev_signal_remove(struct wlr_udev *udev, struct wl_listener *listener);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue