Commit d23bfd8d authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

gdiplus: Round up when converting from 32-bit ARGB to PARGB.

parent ada3aea7
......@@ -442,9 +442,9 @@ void convert_32bppARGB_to_32bppPARGB(UINT width, UINT height,
for (x=0; x<width; x++)
{
BYTE alpha=src[3];
*dst++ = *src++ * alpha / 255;
*dst++ = *src++ * alpha / 255;
*dst++ = *src++ * alpha / 255;
*dst++ = (*src++ * alpha + 127) / 255;
*dst++ = (*src++ * alpha + 127) / 255;
*dst++ = (*src++ * alpha + 127) / 255;
*dst++ = *src++;
}
}
......
......@@ -4129,7 +4129,6 @@ static void test_ARGB_conversion(void)
ok(data.Stride == 8, "expected 8, got %d\n", data.Stride);
ok(data.PixelFormat == PixelFormat32bppPARGB, "expected PixelFormat32bppPARGB, got %d\n", data.PixelFormat);
match = !memcmp(data.Scan0, pargb, sizeof(pargb));
todo_wine
ok(match, "bits don't match\n");
if (!match)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment