diff options
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/drm/cvt.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/backend/drm/cvt.h b/include/backend/drm/cvt.h new file mode 100644 index 00000000..34db5384 --- /dev/null +++ b/include/backend/drm/cvt.h @@ -0,0 +1,13 @@ +#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 |