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.

38 lines
651 B

8 years ago
#ifndef DRM_BACKEND_H
#define DRM_BACKEND_H
#include <stdbool.h>
#include <stddef.h>
#include <EGL/egl.h>
#include <gbm.h>
#include <libudev.h>
#include <wayland-server.h>
8 years ago
#include <wlr/session.h>
#include <wlr/common/list.h>
8 years ago
#include <wlr/backend/drm.h>
#include "backend.h"
8 years ago
#include "udev.h"
#include "event.h"
#include "drm.h"
struct wlr_backend_state {
8 years ago
int fd;
struct wlr_backend *backend;
struct wl_event_source *drm_event;
8 years ago
struct wl_listener device_paused;
struct wl_listener device_resumed;
8 years ago
uint32_t taken_crtcs;
list_t *outputs;
8 years ago
struct wlr_drm_renderer renderer;
struct wlr_session *session;
8 years ago
struct wlr_udev udev;
};
#endif