reset uv after window drawing

This commit is contained in:
vaxerski 2022-08-27 22:43:03 +02:00
parent 261493d584
commit cddb2d4b00
1 changed files with 4 additions and 0 deletions

View File

@ -254,6 +254,10 @@ void CHyprRenderer::renderWindow(CWindow* pWindow, CMonitor* pMonitor, timespec*
}
}
// reset uv
g_pHyprOpenGL->m_RenderData.primarySurfaceUVTopLeft = Vector2D(-1, -1);
g_pHyprOpenGL->m_RenderData.primarySurfaceUVBottomRight = Vector2D(-1, -1);
g_pHyprOpenGL->m_pCurrentWindow = nullptr;
}