mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-05 13:05:59 +01:00
Merge pull request #683 from Ongy/drm_remember_dpms
restore dpms state on drm resume
This commit is contained in:
commit
bae17ab97c
3 changed files with 6 additions and 1 deletions
|
@ -83,6 +83,8 @@ static void session_signal(struct wl_listener *listener, void *data) {
|
|||
wl_list_for_each(conn, &drm->outputs, link){
|
||||
if (conn->output.current_mode) {
|
||||
wlr_output_set_mode(&conn->output, conn->output.current_mode);
|
||||
} else {
|
||||
wlr_drm_connector_enable(&conn->output, false);
|
||||
}
|
||||
|
||||
if (!conn->crtc) {
|
||||
|
|
|
@ -282,7 +282,7 @@ void wlr_drm_connector_start_renderer(struct wlr_drm_connector *conn) {
|
|||
}
|
||||
}
|
||||
|
||||
static void wlr_drm_connector_enable(struct wlr_output *output, bool enable) {
|
||||
void wlr_drm_connector_enable(struct wlr_output *output, bool enable) {
|
||||
struct wlr_drm_connector *conn = (struct wlr_drm_connector *)output;
|
||||
if (conn->state != WLR_DRM_CONN_CONNECTED) {
|
||||
return;
|
||||
|
@ -296,6 +296,8 @@ static void wlr_drm_connector_enable(struct wlr_output *output, bool enable) {
|
|||
|
||||
if (enable) {
|
||||
wlr_drm_connector_start_renderer(conn);
|
||||
} else {
|
||||
output->current_mode = NULL;
|
||||
}
|
||||
|
||||
wlr_output_update_enabled(&conn->output, enable);
|
||||
|
|
|
@ -144,6 +144,7 @@ void wlr_drm_restore_outputs(struct wlr_drm_backend *drm);
|
|||
void wlr_drm_connector_cleanup(struct wlr_drm_connector *conn);
|
||||
void wlr_drm_scan_connectors(struct wlr_drm_backend *state);
|
||||
int wlr_drm_event(int fd, uint32_t mask, void *data);
|
||||
void wlr_drm_connector_enable(struct wlr_output *output, bool enable);
|
||||
|
||||
void wlr_drm_connector_start_renderer(struct wlr_drm_connector *conn);
|
||||
|
||||
|
|
Loading…
Reference in a new issue