summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qwidget.cpp
diff options
context:
space:
mode:
authorMorten Sørvig <morten.sorvig@qt.io>2022-06-09 12:48:17 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-06-15 06:58:00 +0000
commitdf1beb422aa3b773a3b07c56bd9857474e1d2f28 (patch)
treef134c1d47e75f724547fce6aaed4933e5cb151b7 /src/widgets/kernel/qwidget.cpp
parentb623835dd98807bea056520e3d2eb3513e6f458a (diff)
Add support for painting at integer DPR with downscale
Enable by setting QT_WIDGETS_HIGHDPI_DOWNSCALE=1 and QT_WIDGETS_RHI=1. This will make the backing store and painter operate at the next highest integer DPR in cases where QWindow::devicePixelRatio() returns a fractional value. The backing store image will then be downscaled to the target DPR at flush time, using the RHI flush pipeline. [ChangeLog][QWidgets] Added experimental support for always painting at an integer device pixel ratio (rounding the DPR up if necessary), followed by a downscale to the target DPR.Enable by setting QT_WIDGETS_HIGHDPI_DOWNSCALE=1 and QT_WIDGETS_RHI=1. Task-number: QTBUG-86344 Change-Id: Id5b834a0e3499818b0b656161f5e0c38a6caa340 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io> (cherry picked from commit 79bead6c3b507331614dcc3c789e18438bc10395) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/widgets/kernel/qwidget.cpp')
-rw-r--r--src/widgets/kernel/qwidget.cpp15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/widgets/kernel/qwidget.cpp b/src/widgets/kernel/qwidget.cpp
index 01a8905c79..9c1cec5d8d 100644
--- a/src/widgets/kernel/qwidget.cpp
+++ b/src/widgets/kernel/qwidget.cpp
@@ -12698,6 +12698,17 @@ int QWidget::metric(PaintDeviceMetric m) const
return QPaintDevice::metric(m);
}
+ auto resolveDevicePixelRatio = [this, screen]() -> qreal {
+
+ // Note: keep in sync with QBackingStorePrivate::backingStoreDevicePixelRatio()!
+ static bool downscale = qEnvironmentVariableIntValue("QT_WIDGETS_HIGHDPI_DOWNSCALE") > 0;
+ QWindow *window = this->window()->windowHandle();
+ if (downscale && window)
+ return std::ceil(window->devicePixelRatio());
+
+ return screen->devicePixelRatio();
+ };
+
switch (m) {
case PdmWidth:
return data->crect.width();
@@ -12726,9 +12737,9 @@ int QWidget::metric(PaintDeviceMetric m) const
case PdmPhysicalDpiY:
return qRound(screen->physicalDotsPerInchY());
case PdmDevicePixelRatio:
- return screen->devicePixelRatio();
+ return resolveDevicePixelRatio();
case PdmDevicePixelRatioScaled:
- return QPaintDevice::devicePixelRatioFScale() * screen->devicePixelRatio();
+ return QPaintDevice::devicePixelRatioFScale() * resolveDevicePixelRatio();
default:
break;
}