Compositing multiple images into one using Qt's QPixmap as the storage:
QPainter painter(&destinationPixmap);
painter.drawPixmap(0, 0, sourcePixmap);
This seems to be quite slow (2-10ms for a maximised window on typical monitor) - any way to do it quicker without changing to completely different technology?
QImage
may provide benefit with conversion toQPixmap
as late as possible. Hard to say without more details. – Scheff's Catomp parallel
could help ? – Vishaal Shankar