Skip to content
Snippets Groups Projects
Commit cd0bdbb6 authored by Jeff Gilbert's avatar Jeff Gilbert
Browse files

Bug 723453 - Split cases for ConvertHostARGB - r=joe

parent 789aa253
No related branches found
No related tags found
No related merge requests found
......@@ -437,17 +437,26 @@ void
nsBMPEncoder::ConvertHostARGBRow(const PRUint8* aSrc, PRUint8* aDest,
PRUint32 aPixelWidth)
{
for (PRUint32 x = 0; x < aPixelWidth; x ++) {
const PRUint32& pixelIn = ((const PRUint32*)(aSrc))[x];
PRUint8 *pixelOut = &aDest[x * BytesPerPixel(mBMPInfoHeader.bpp)];
int bytes = BytesPerPixel(mBMPInfoHeader.bpp);
if (mBMPInfoHeader.bpp == 32) {
for (PRUint32 x = 0; x < aPixelWidth; x++) {
const PRUint32& pixelIn = ((const PRUint32*)(aSrc))[x];
PRUint8 *pixelOut = &aDest[x * bytes];
PRUint8 alpha = (pixelIn & 0xff000000) >> 24;
pixelOut[0] = (((pixelIn & 0xff0000) >> 16));
pixelOut[1] = (((pixelIn & 0x00ff00) >> 8));
pixelOut[2] = (((pixelIn & 0x0000ff) >> 0));
pixelOut[0] = (pixelIn & 0x00ff0000) >> 16;
pixelOut[1] = (pixelIn & 0x0000ff00) >> 8;
pixelOut[2] = (pixelIn & 0x000000ff) >> 0;
pixelOut[3] = (pixelIn & 0xff000000) >> 24;
}
} else {
for (PRUint32 x = 0; x < aPixelWidth; x++) {
const PRUint32& pixelIn = ((const PRUint32*)(aSrc))[x];
PRUint8 *pixelOut = &aDest[x * bytes];
if (mBMPInfoHeader.bpp == 32) {
pixelOut[3] = alpha;
pixelOut[0] = (pixelIn & 0xff0000) >> 16;
pixelOut[1] = (pixelIn & 0x00ff00) >> 8;
pixelOut[2] = (pixelIn & 0x0000ff) >> 0;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment