wlroots-hyprland/include/backend/drm/drm.h

66 lines
1.3 KiB
C
Raw Normal View History

2017-05-01 05:20:48 +02:00
#ifndef DRM_H
#define DRM_H
#include <stdbool.h>
#include <stdint.h>
#include <xf86drmMode.h>
#include <EGL/egl.h>
#include <gbm.h>
2017-05-03 07:17:14 +02:00
#include "backend/egl.h"
2017-05-07 16:00:23 +02:00
#include "backend.h"
2017-05-03 07:17:14 +02:00
2017-05-01 07:49:18 +02:00
struct wlr_drm_renderer {
int fd;
struct gbm_device *gbm;
2017-05-03 07:17:14 +02:00
struct wlr_egl egl;
2017-05-01 05:20:48 +02:00
};
2017-05-03 11:28:44 +02:00
bool wlr_drm_renderer_init(struct wlr_drm_renderer *renderer, int fd);
2017-05-01 07:49:18 +02:00
void wlr_drm_renderer_free(struct wlr_drm_renderer *renderer);
2017-05-01 05:20:48 +02:00
enum wlr_drm_output_state {
DRM_OUTPUT_DISCONNECTED,
DRM_OUTPUT_NEEDS_MODESET,
DRM_OUTPUT_CONNECTED,
2017-05-01 07:49:18 +02:00
};
2017-05-07 18:26:48 +02:00
struct wlr_output_mode_state {
struct wlr_wl_output_mode *wlr_mode;
drmModeModeInfo mode;
};
struct wlr_output_state {
struct wlr_output *wlr_output;
enum wlr_drm_output_state state;
2017-05-01 05:20:48 +02:00
uint32_t connector;
2017-05-13 10:37:15 +02:00
struct {
uint32_t dpms;
} props;
2017-05-01 05:20:48 +02:00
uint32_t width;
uint32_t height;
uint32_t crtc;
drmModeCrtc *old_crtc;
2017-05-01 07:49:18 +02:00
struct wlr_drm_renderer *renderer;
2017-05-01 05:20:48 +02:00
struct gbm_surface *gbm;
struct gbm_bo *bo_last;
struct gbm_bo *bo_current;
2017-05-01 05:20:48 +02:00
EGLSurface *egl;
bool pageflip_pending;
bool cleanup;
};
2017-05-07 18:26:48 +02:00
void wlr_drm_output_cleanup(struct wlr_output_state *output, bool restore);
2017-05-01 05:20:48 +02:00
2017-05-07 16:00:23 +02:00
void wlr_drm_scan_connectors(struct wlr_backend_state *state);
2017-05-03 11:28:44 +02:00
int wlr_drm_event(int fd, uint32_t mask, void *data);
2017-05-01 05:20:48 +02:00
void wlr_drm_output_start_renderer(struct wlr_output_state *output);
2017-05-13 15:12:47 +02:00
2017-05-01 05:20:48 +02:00
#endif