QPixelLayout: fix convertCMYKToRGBA32F

The assignment to the output was missing.

This work has been kindly sponsored by the QGIS project
(https://qgis.org/).

Change-Id: Ibe33073b7e97597631a8dbb0035742693fef97f5
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
This commit is contained in:
Giuseppe D'Angelo 2024-04-04 21:00:22 +02:00
parent 923c5145a8
commit dde96f0f47

View File

@ -2080,7 +2080,7 @@ static const QRgbaFloat32 * QT_FASTCALL convertCMYKToRGBA32F(QRgbaFloat32 *buffe
const QList<QRgb> *, QDitherInfo *)
{
for (int i = 0; i < count; ++i)
QRgbaFloat32::fromArgb32(QCmyk32::fromCmyk32(src[i]).toColor().rgba());
buffer[i] = QRgbaFloat32::fromArgb32(QCmyk32::fromCmyk32(src[i]).toColor().rgba());
return buffer;
}