mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 15:05:58 +01:00
Update wlroots dep
This commit is contained in:
parent
f2d84a7e3a
commit
7f62cbc48a
3 changed files with 9 additions and 3 deletions
|
@ -90,8 +90,6 @@ void CMonitor::onConnect(bool noRule) {
|
||||||
wlr_xcursor_manager_load(g_pCompositor->m_sWLRXCursorMgr, monitorRule.scale);
|
wlr_xcursor_manager_load(g_pCompositor->m_sWLRXCursorMgr, monitorRule.scale);
|
||||||
wlr_output_set_transform(output, WL_OUTPUT_TRANSFORM_NORMAL); // TODO: support other transforms
|
wlr_output_set_transform(output, WL_OUTPUT_TRANSFORM_NORMAL); // TODO: support other transforms
|
||||||
|
|
||||||
wlr_output_enable_adaptive_sync(output, 1);
|
|
||||||
|
|
||||||
// create it in the arr
|
// create it in the arr
|
||||||
vecPosition = monitorRule.offset;
|
vecPosition = monitorRule.offset;
|
||||||
vecSize = monitorRule.resolution;
|
vecSize = monitorRule.resolution;
|
||||||
|
|
|
@ -984,6 +984,14 @@ bool CHyprRenderer::applyMonitorRule(CMonitor* pMonitor, SMonitorRule* pMonitorR
|
||||||
|
|
||||||
pMonitor->vecPixelSize = pMonitor->vecSize;
|
pMonitor->vecPixelSize = pMonitor->vecSize;
|
||||||
|
|
||||||
|
// Adaptive sync (VRR)
|
||||||
|
wlr_output_enable_adaptive_sync(pMonitor->output, 1);
|
||||||
|
|
||||||
|
if (!wlr_output_test(pMonitor->output)) {
|
||||||
|
Debug::log(LOG, "Pending output %s does not accept VRR.", pMonitor->output->name);
|
||||||
|
wlr_output_enable_adaptive_sync(pMonitor->output, 0);
|
||||||
|
}
|
||||||
|
|
||||||
// update renderer
|
// update renderer
|
||||||
g_pHyprOpenGL->destroyMonitorResources(pMonitor);
|
g_pHyprOpenGL->destroyMonitorResources(pMonitor);
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 7c575922c05e4d5fd9a403c2aa631a54c7531d44
|
Subproject commit fd0b0276c9ecc159549acff48b932b83ec3b4f12
|
Loading…
Reference in a new issue