Use SmoothPixmapTransform when drawing cursor
This solves the pixelated look of the cursor under wayland, if the scaling is set to a fractional value.
This commit is contained in:
parent
ab9bfb2993
commit
9537ea6d16
2 changed files with 2 additions and 0 deletions
|
@ -157,6 +157,7 @@ bool DrmOutput::updateCursor()
|
|||
QPainter p;
|
||||
p.begin(c);
|
||||
p.setWorldTransform(logicalToNativeMatrix(cursor->rect(), 1, transform()).toTransform());
|
||||
p.setRenderHint(QPainter::SmoothPixmapTransform);
|
||||
p.drawImage(QPoint(0, 0), cursorImage);
|
||||
p.end();
|
||||
return m_pipeline->setCursor(m_cursor->currentBuffer(), logicalToNativeMatrix(cursor->rect(), scale(), transform()).map(cursor->hotspot()));
|
||||
|
|
|
@ -390,6 +390,7 @@ void ScreenShotEffect::grabPointerImage(QImage &snapshot, int xOffset, int yOffs
|
|||
}
|
||||
|
||||
QPainter painter(&snapshot);
|
||||
painter.setRenderHint(QPainter::SmoothPixmapTransform);
|
||||
painter.drawImage(effects->cursorPos() - cursor.hotSpot() - QPoint(xOffset, yOffset), cursor.image());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue