mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 04:45:58 +01:00
backend/wayland: unmap when output is disabled
This commit is contained in:
parent
8243399385
commit
c0fd37c491
1 changed files with 6 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
||||||
static const uint32_t SUPPORTED_OUTPUT_STATE =
|
static const uint32_t SUPPORTED_OUTPUT_STATE =
|
||||||
WLR_OUTPUT_STATE_BACKEND_OPTIONAL |
|
WLR_OUTPUT_STATE_BACKEND_OPTIONAL |
|
||||||
WLR_OUTPUT_STATE_BUFFER |
|
WLR_OUTPUT_STATE_BUFFER |
|
||||||
|
WLR_OUTPUT_STATE_ENABLED |
|
||||||
WLR_OUTPUT_STATE_MODE |
|
WLR_OUTPUT_STATE_MODE |
|
||||||
WLR_OUTPUT_STATE_ADAPTIVE_SYNC_ENABLED;
|
WLR_OUTPUT_STATE_ADAPTIVE_SYNC_ENABLED;
|
||||||
|
|
||||||
|
@ -491,6 +492,11 @@ static bool output_commit(struct wlr_output *wlr_output,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((state->committed & WLR_OUTPUT_STATE_ENABLED) && !state->enabled) {
|
||||||
|
wl_surface_attach(output->surface, NULL, 0, 0);
|
||||||
|
wl_surface_commit(output->surface);
|
||||||
|
}
|
||||||
|
|
||||||
if (state->committed & WLR_OUTPUT_STATE_BUFFER) {
|
if (state->committed & WLR_OUTPUT_STATE_BUFFER) {
|
||||||
const pixman_region32_t *damage = NULL;
|
const pixman_region32_t *damage = NULL;
|
||||||
if (state->committed & WLR_OUTPUT_STATE_DAMAGE) {
|
if (state->committed & WLR_OUTPUT_STATE_DAMAGE) {
|
||||||
|
|
Loading…
Reference in a new issue