Bug 1500709 - fix big-endian RGBBitShift in Swizzle. r=me

CLOSED TREE
This commit is contained in:
Lee Salzman 2018-10-22 14:49:08 -04:00
Родитель 6f04b04574
Коммит 6e43b8bf7e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -87,7 +87,7 @@ RGBBitShift(SurfaceFormat aFormat)
#if MOZ_LITTLE_ENDIAN
return 8 * RGBByteIndex(aFormat);
#else
return 24 - 8 * RGBByteIndex(aFormat);
return 8 - 8 * RGBByteIndex(aFormat);
#endif
}