mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
backend/drm: add wlr_drm_connector_state.connector
Will be useful for multi-connector commits, to avoid having to pass the list of connectors separately from their state.
This commit is contained in:
parent
859373b253
commit
f8f2dde1f0
2 changed files with 2 additions and 0 deletions
|
@ -505,6 +505,7 @@ static void drm_connector_state_init(struct wlr_drm_connector_state *state,
|
||||||
struct wlr_drm_connector *conn,
|
struct wlr_drm_connector *conn,
|
||||||
const struct wlr_output_state *base) {
|
const struct wlr_output_state *base) {
|
||||||
*state = (struct wlr_drm_connector_state){
|
*state = (struct wlr_drm_connector_state){
|
||||||
|
.connector = conn,
|
||||||
.base = base,
|
.base = base,
|
||||||
.modeset = base->allow_reconfiguration,
|
.modeset = base->allow_reconfiguration,
|
||||||
.active = output_pending_enabled(&conn->output, base),
|
.active = output_pending_enabled(&conn->output, base),
|
||||||
|
|
|
@ -123,6 +123,7 @@ struct wlr_drm_mode {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct wlr_drm_connector_state {
|
struct wlr_drm_connector_state {
|
||||||
|
struct wlr_drm_connector *connector;
|
||||||
const struct wlr_output_state *base;
|
const struct wlr_output_state *base;
|
||||||
bool modeset;
|
bool modeset;
|
||||||
bool nonblock;
|
bool nonblock;
|
||||||
|
|
Loading…
Reference in a new issue