aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/adaptations/software/qsgsoftwareglyphnode.cpp
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@qt.io>2020-08-06 21:40:01 +0200
committerMorten Johan Sørvig <morten.sorvig@qt.io>2020-09-28 11:01:43 +0000
commit9e2f4e112776149be550dbea6003a192cd931538 (patch)
tree5c9b9ba8709edb24139179c1a37784a9f693b39c /src/quick/scenegraph/adaptations/software/qsgsoftwareglyphnode.cpp
parent3eb9ee34c06d54ea21fedd3188c60e536a487b1c (diff)
Port from devicePixelRatioF() to devicePixelRatio()
This ports all of QtDeclarative. Change-Id: Ie6eb4d96b4d49fbed1e8be514d03e331549cd712 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'src/quick/scenegraph/adaptations/software/qsgsoftwareglyphnode.cpp')
-rw-r--r--src/quick/scenegraph/adaptations/software/qsgsoftwareglyphnode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/scenegraph/adaptations/software/qsgsoftwareglyphnode.cpp b/src/quick/scenegraph/adaptations/software/qsgsoftwareglyphnode.cpp
index 481d1f0304..47f4b5c696 100644
--- a/src/quick/scenegraph/adaptations/software/qsgsoftwareglyphnode.cpp
+++ b/src/quick/scenegraph/adaptations/software/qsgsoftwareglyphnode.cpp
@@ -132,8 +132,8 @@ void QSGSoftwareGlyphNode::paint(QPainter *painter)
QPointF pos = m_position - QPointF(0, m_glyphRun.rawFont().ascent());
qreal offset = 1.0;
- if (painter->device()->devicePixelRatioF() > 0.0)
- offset = 1.0 / painter->device()->devicePixelRatioF();
+ if (painter->device()->devicePixelRatio() > 0.0)
+ offset = 1.0 / painter->device()->devicePixelRatio();
switch (m_style) {
case QQuickText::Normal: break;