diff options
author | Simon Ser <contact@emersion.fr> | 2023-02-02 13:41:40 +0100 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2023-02-28 14:44:02 +0000 |
commit | a1603042895e250f37961623f0fba17edd37031d (patch) | |
tree | b8000136583ca2ebb5462f3a94fae5e0f99f2a45 /include/backend | |
parent | 35da9970019be6580394d5d6234b8ede0b2f0d5a (diff) |
backend/drm: use libdisplay-info for CVT mode generation
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/drm/cvt.h | 13 | ||||
-rw-r--r-- | include/backend/drm/util.h | 2 |
2 files changed, 2 insertions, 13 deletions
diff --git a/include/backend/drm/cvt.h b/include/backend/drm/cvt.h deleted file mode 100644 index 34db5384..00000000 --- a/include/backend/drm/cvt.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef BACKEND_DRM_CVT_H -#define BACKEND_DRM_CVT_H - -#include <stdbool.h> -#include <stddef.h> -#include <stdint.h> -#include <stdio.h> -#include <xf86drmMode.h> - -void generate_cvt_mode(drmModeModeInfo *mode, int hdisplay, int vdisplay, - float vrefresh, bool reduced, bool interlaced); - -#endif diff --git a/include/backend/drm/util.h b/include/backend/drm/util.h index 12eec35c..254f774d 100644 --- a/include/backend/drm/util.h +++ b/include/backend/drm/util.h @@ -15,6 +15,8 @@ const char *get_pnp_manufacturer(const char code[static 3]); // Populates the make/model/phys_{width,height} of output from the edid data void parse_edid(struct wlr_drm_connector *conn, size_t len, const uint8_t *data); const char *drm_connector_status_str(drmModeConnection status); +void generate_cvt_mode(drmModeModeInfo *mode, int hdisplay, int vdisplay, + float vrefresh); // Part of match_obj enum { |