25 Jul
2025
25 Jul
'25
4:04 a.m.
Esme Povirk (@madewokherd) commented about dlls/windowscodecs/converter.c:
+ for (x = 0; x < prc->Width; x++) + { + float f32 = float_16_to_32(*srcpixel++); + + *dstpixel++ = f32; + *dstpixel++ = f32; + *dstpixel++ = f32; + *dstpixel++ = 1.0f; + } + srcrow += srcstride; + dstrow += cbStride; + } + } + + free(srcdata); + return S_OK; I think we should pass along any failure from `CopyPixels`?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8631#note_110981