wlroots/include/backend/drm/backend.h

35 lines
579 B
C
Raw Normal View History

2017-05-01 05:49:18 +00:00
#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>
2017-05-01 05:49:18 +00:00
#include <wlr/session.h>
2017-05-02 02:34:33 +00:00
#include <wlr/common/list.h>
2017-05-02 06:13:17 +00:00
#include <wlr/backend/drm.h>
2017-05-02 02:34:33 +00:00
2017-05-07 14:00:23 +00:00
#include "backend.h"
2017-05-01 05:49:18 +00:00
#include "udev.h"
#include "event.h"
#include "drm.h"
2017-05-07 14:00:23 +00:00
struct wlr_backend_state {
2017-05-01 05:49:18 +00:00
int fd;
2017-05-07 14:00:23 +00:00
struct wlr_backend *backend;
2017-05-03 09:28:44 +00:00
struct wl_event_source *drm_event;
2017-05-01 05:49:18 +00:00
uint32_t taken_crtcs;
2017-05-03 09:28:44 +00:00
list_t *outputs;
2017-05-01 05:49:18 +00:00
struct wlr_drm_renderer renderer;
struct wlr_session *session;
2017-05-01 05:49:18 +00:00
struct wlr_udev udev;
};
#endif