mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
Changed modesetting interface.
This commit is contained in:
parent
d196a79b6c
commit
ef9768858e
6 changed files with 218 additions and 225 deletions
|
|
@ -3,16 +3,26 @@
|
|||
|
||||
#include <wayland-server.h>
|
||||
#include <wlr/session.h>
|
||||
#include <xf86drmMode.h> // drmModeModeInfo
|
||||
|
||||
struct wlr_drm_backend;
|
||||
struct wlr_drm_output;
|
||||
|
||||
struct wlr_drm_mode {
|
||||
uint16_t width;
|
||||
uint16_t height;
|
||||
uint32_t rate;
|
||||
drmModeModeInfo mode;
|
||||
};
|
||||
|
||||
struct wlr_drm_backend *wlr_drm_backend_init(struct wl_display *display,
|
||||
struct wlr_session *session, struct wl_listener *add, struct wl_listener *rem,
|
||||
struct wl_listener *render);
|
||||
void wlr_drm_backend_free(struct wlr_drm_backend *backend);
|
||||
|
||||
bool wlr_drm_output_modeset(struct wlr_drm_output *out, const char *str);
|
||||
struct wlr_drm_mode *wlr_drm_output_get_modes(struct wlr_drm_output *out, size_t *count);
|
||||
bool wlr_drm_output_modeset(struct wlr_drm_output *out, struct wlr_drm_mode *mode);
|
||||
|
||||
void wlr_drm_output_begin(struct wlr_drm_output *out);
|
||||
void wlr_drm_output_end(struct wlr_drm_output *out);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue