summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/xcb/qxcbbackingstore.h
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@theqtcompany.com>2015-03-26 17:59:39 +0100
committerLaszlo Agocs <laszlo.agocs@theqtcompany.com>2015-03-30 08:41:49 +0000
commit6fe60cd9f2966b141f70b0a223b93173505b2ecb (patch)
treef91c80eb62c1983dff60a59b551e259955bb08f2 /src/plugins/platforms/xcb/qxcbbackingstore.h
parent1a542f25447686ab7a5eea759a33f20ce9eeaacc (diff)
xcb: Fix bgr888 VNC sessions
Introduce a slow path for 24 and 32 bit BGR. We don't care about performance here but it has to show the correct colors. Task-number: QTBUG-42776 Change-Id: Ic73e8ca3950b2b956f06643165dcfac51e7540f3 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@theqtcompany.com>
Diffstat (limited to 'src/plugins/platforms/xcb/qxcbbackingstore.h')
-rw-r--r--src/plugins/platforms/xcb/qxcbbackingstore.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/platforms/xcb/qxcbbackingstore.h b/src/plugins/platforms/xcb/qxcbbackingstore.h
index 248542719b..b58a32d313 100644
--- a/src/plugins/platforms/xcb/qxcbbackingstore.h
+++ b/src/plugins/platforms/xcb/qxcbbackingstore.h
@@ -65,9 +65,12 @@ public:
bool scroll(const QRegion &area, int dx, int dy) Q_DECL_OVERRIDE;
void beginPaint(const QRegion &) Q_DECL_OVERRIDE;
+ void endPaint() Q_DECL_OVERRIDE;
private:
QXcbShmImage *m_image;
+ QRegion m_paintRegion;
+ QImage m_rgbImage;
};
QT_END_NAMESPACE