Update lcms2 (#773)

Update to mm2/Little-CMS@e342f44
This commit is contained in:
Matthieu Darbois 2016-05-03 22:22:03 +02:00
parent 94cfb1b008
commit 44a499f2ac
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@
// A fast way to convert from/to 16 <-> 8 bits
#define FROM_8_TO_16(rgb) (cmsUInt16Number) ((((cmsUInt16Number) (rgb)) << 8)|(rgb))
#define FROM_16_TO_8(rgb) (cmsUInt8Number) ((((rgb) * 65281 + 8388608) >> 24) & 0xFF)
#define FROM_16_TO_8(rgb) (cmsUInt8Number) ((((cmsUInt32Number)(rgb) * 65281U + 8388608U) >> 24) & 0xFFU)
// Code analysis is broken on asserts
#ifdef _MSC_VER