mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-29 22:05:58 +01:00
pointer: use preMonitorCommit for resetting render state
in DS preRender is not called
This commit is contained in:
parent
10e631053a
commit
f3a9f9ec45
2 changed files with 3 additions and 1 deletions
|
@ -863,6 +863,8 @@ bool CMonitorState::commit() {
|
||||||
if (!updateSwapchain())
|
if (!updateSwapchain())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
EMIT_HOOK_EVENT("preMonitorCommit", m_pOwner);
|
||||||
|
|
||||||
ensureBufferPresent();
|
ensureBufferPresent();
|
||||||
|
|
||||||
bool ret = m_pOwner->output->commit();
|
bool ret = m_pOwner->output->commit();
|
||||||
|
|
|
@ -25,7 +25,7 @@ CPointerManager::CPointerManager() {
|
||||||
nullptr);
|
nullptr);
|
||||||
});
|
});
|
||||||
|
|
||||||
hooks.monitorPreRender = g_pHookSystem->hookDynamic("preRender", [this](void* self, SCallbackInfo& info, std::any data) {
|
hooks.monitorPreRender = g_pHookSystem->hookDynamic("preMonitorCommit", [this](void* self, SCallbackInfo& info, std::any data) {
|
||||||
auto state = stateFor(std::any_cast<CMonitor*>(data)->self.lock());
|
auto state = stateFor(std::any_cast<CMonitor*>(data)->self.lock());
|
||||||
if (!state)
|
if (!state)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue