mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 23:45:58 +01:00
parent
822775aa8c
commit
1a2a2da6aa
1 changed files with 2 additions and 2 deletions
|
@ -2209,7 +2209,7 @@ void CHyprRenderer::recheckSolitaryForMonitor(CMonitor* pMonitor) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CHyprRenderer::renderSoftwareCursors(CMonitor* pMonitor, const CRegion& damage, std::optional<Vector2D> overridePos) {
|
void CHyprRenderer::renderSoftwareCursors(CMonitor* pMonitor, const CRegion& damage, std::optional<Vector2D> overridePos) {
|
||||||
const auto CURSORPOS = overridePos.value_or(g_pInputManager->getMouseCoordsInternal() - pMonitor->vecPosition);
|
const auto CURSORPOS = overridePos.value_or(g_pInputManager->getMouseCoordsInternal() - pMonitor->vecPosition) * pMonitor->scale;
|
||||||
wlr_output_cursor* cursor;
|
wlr_output_cursor* cursor;
|
||||||
wl_list_for_each(cursor, &pMonitor->output->cursors, link) {
|
wl_list_for_each(cursor, &pMonitor->output->cursors, link) {
|
||||||
if (!cursor->enabled || !cursor->visible || pMonitor->output->hardware_cursor == cursor)
|
if (!cursor->enabled || !cursor->visible || pMonitor->output->hardware_cursor == cursor)
|
||||||
|
@ -2218,7 +2218,7 @@ void CHyprRenderer::renderSoftwareCursors(CMonitor* pMonitor, const CRegion& dam
|
||||||
if (!cursor->texture)
|
if (!cursor->texture)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
CBox cursorBox = CBox{CURSORPOS.x, CURSORPOS.y, cursor->width, cursor->height}.translate({-cursor->hotspot_x, -cursor->hotspot_y}).scale(pMonitor->scale);
|
CBox cursorBox = CBox{CURSORPOS.x, CURSORPOS.y, cursor->width, cursor->height}.translate({-cursor->hotspot_x, -cursor->hotspot_y});
|
||||||
|
|
||||||
// TODO: NVIDIA doesn't like if we use renderTexturePrimitive here. Why?
|
// TODO: NVIDIA doesn't like if we use renderTexturePrimitive here. Why?
|
||||||
g_pHyprOpenGL->renderTexture(cursor->texture, &cursorBox, 1.0);
|
g_pHyprOpenGL->renderTexture(cursor->texture, &cursorBox, 1.0);
|
||||||
|
|
Loading…
Reference in a new issue