aboutsummaryrefslogtreecommitdiff
path: root/include/backend/drm/otd.h
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2017-05-01 17:49:18 +1200
committerScott Anderson <ascent12@hotmail.com>2017-05-01 17:49:18 +1200
commit41a82fd2fcd4759fbb522ffe7e8f6667d6ab945a (patch)
treeb11530bf9596da41231d0698c1633fbcb5cd2101 /include/backend/drm/otd.h
parent9ac46ec5ed6ba67a8c684069f8255384f6acd18b (diff)
Renaming.
Diffstat (limited to 'include/backend/drm/otd.h')
-rw-r--r--include/backend/drm/otd.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/include/backend/drm/otd.h b/include/backend/drm/otd.h
deleted file mode 100644
index eef0e991..00000000
--- a/include/backend/drm/otd.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef LIBOTD_H
-#define LIBOTD_H
-
-#include <stdbool.h>
-#include <stddef.h>
-#include <EGL/egl.h>
-#include <gbm.h>
-#include <libudev.h>
-
-#include "session.h"
-
-struct otd {
- int fd;
- bool paused;
-
- // Priority Queue (Max-heap)
- size_t event_cap;
- size_t event_len;
- struct otd_event *events;
-
- size_t display_len;
- struct otd_display *displays;
-
- uint32_t taken_crtcs;
-
- struct gbm_device *gbm;
- struct {
- EGLDisplay disp;
- EGLConfig conf;
- EGLContext context;
- } egl;
-
- struct otd_session session;
-
- struct udev *udev;
- struct udev_monitor *mon;
- int udev_fd;
- char *drm_path;
-};
-
-struct otd *otd_start(void);
-void otd_finish(struct otd *otd);
-
-#endif