зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1500709 - fix big-endian RGBBitShift in Swizzle. r=me
CLOSED TREE
This commit is contained in:
Родитель
6f04b04574
Коммит
6e43b8bf7e
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче