Merge pull request #684 from tomahk/main

fix some bugs with attaching/disabling monitors
This commit is contained in:
Vaxry 2022-09-19 21:08:48 +01:00 committed by GitHub
commit a8943246a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -286,7 +286,8 @@ void Events::listener_monitorFrame(void* owner, void* data) {
pixman_region32_fini(&frameDamage);
pixman_region32_fini(&damage);
wlr_output_commit(PMONITOR->output);
if (!wlr_output_commit(PMONITOR->output))
return;
if (*PDAMAGEBLINK || *PNOVFR)
g_pCompositor->scheduleFrameForMonitor(PMONITOR);

View File

@ -65,6 +65,8 @@ void CMonitor::onConnect(bool noRule) {
}
if (!m_bRenderingInitPassed) {
output->allocator = nullptr;
output->renderer = nullptr;
wlr_output_init_render(output, g_pCompositor->m_sWLRAllocator, g_pCompositor->m_sWLRRenderer);
m_bRenderingInitPassed = true;
}
@ -356,4 +358,4 @@ void CMonitor::setMirror(const std::string& mirrorOf) {
g_pCompositor->m_pLastMonitor = g_pCompositor->m_vMonitors.front().get();
}
}
}