aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/plugins/scenegraph/softwarecontext/context.cpp1
-rw-r--r--src/plugins/scenegraph/softwarecontext/softwarelayer.cpp9
2 files changed, 7 insertions, 3 deletions
diff --git a/src/plugins/scenegraph/softwarecontext/context.cpp b/src/plugins/scenegraph/softwarecontext/context.cpp
index dafbfdaae9..f107290f62 100644
--- a/src/plugins/scenegraph/softwarecontext/context.cpp
+++ b/src/plugins/scenegraph/softwarecontext/context.cpp
@@ -143,7 +143,6 @@ void PixmapRenderer::render()
void PixmapRenderer::render(QPixmap *target)
{
- const QRect rect(0, 0, target->width(), target->height());
target->fill(clearColor());
QPainter painter(target);
painter.setRenderHint(QPainter::Antialiasing);
diff --git a/src/plugins/scenegraph/softwarecontext/softwarelayer.cpp b/src/plugins/scenegraph/softwarecontext/softwarelayer.cpp
index 61f5aa031f..059278c547 100644
--- a/src/plugins/scenegraph/softwarecontext/softwarelayer.cpp
+++ b/src/plugins/scenegraph/softwarecontext/softwarelayer.cpp
@@ -185,8 +185,10 @@ void SoftwareLayer::grab()
m_renderer->setDevicePixelRatio(m_device_pixel_ratio);
m_renderer->setRootNode(static_cast<QSGRootNode *>(root));
- if (m_pixmap.size() != m_size)
+ if (m_pixmap.size() != m_size) {
m_pixmap = QPixmap(m_size);
+ m_pixmap.setDevicePixelRatio(m_device_pixel_ratio);
+ }
// Render texture.
root->markDirty(QSGNode::DirtyForceUpdate); // Force matrix, clip and opacity update.
@@ -196,7 +198,10 @@ void SoftwareLayer::grab()
m_renderer->setDeviceRect(m_size);
m_renderer->setViewportRect(m_size);
- m_renderer->m_projectionRect = m_rect.toRect();
+ m_renderer->m_projectionRect = QRect(m_rect.x() * m_device_pixel_ratio,
+ m_rect.y() * m_device_pixel_ratio,
+ m_rect.width() * m_device_pixel_ratio,
+ m_rect.height() * m_device_pixel_ratio);
m_renderer->setClearColor(Qt::transparent);
m_renderer->renderScene();