2019-09-25 13:08:07 +02:00
|
|
|
#ifndef EXAMPLE_COMMON_H
|
|
|
|
#define EXAMPLE_COMMON_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <xf86drmMode.h>
|
|
|
|
|
2019-09-25 14:06:46 +02:00
|
|
|
struct dumb_fb {
|
|
|
|
uint32_t format;
|
|
|
|
uint32_t width, height, stride, size;
|
|
|
|
uint32_t handle;
|
|
|
|
uint32_t id;
|
|
|
|
};
|
|
|
|
|
2019-09-25 13:08:07 +02:00
|
|
|
drmModeConnector *pick_connector(int drm_fd, drmModeRes *drm_res);
|
|
|
|
drmModeCrtc *pick_crtc(int drm_fd, drmModeRes *drm_res,
|
|
|
|
drmModeConnector *connector);
|
|
|
|
void disable_all_crtcs_except(int drm_fd, drmModeRes *drm_res, uint32_t crtc_id);
|
2019-11-08 17:59:59 +01:00
|
|
|
bool set_global_properties(int drm_fd, drmModeAtomicReq *req,
|
|
|
|
const drmModeConnector *connector, const drmModeCrtc *crtc,
|
|
|
|
const drmModeModeInfo *mode);
|
2019-09-25 14:06:46 +02:00
|
|
|
|
|
|
|
bool dumb_fb_init(struct dumb_fb *fb, int drm_fd, uint32_t format,
|
|
|
|
uint32_t width, uint32_t height);
|
|
|
|
void *dumb_fb_map(struct dumb_fb *fb, int drm_fd);
|
|
|
|
void dumb_fb_fill(struct dumb_fb *fb, int drm_fd, uint32_t color);
|
2019-09-25 13:08:07 +02:00
|
|
|
|
|
|
|
#endif
|