Differences From Artifact [4bde7edcf4]:
- File src/OFTaggedPointerColor.m — part of check-in [08cad65b28] at 2023-08-09 08:57:56 on branch trunk — Move some classes out of OFColor.m (user: js, size: 1478) [annotate] [blame] [check-ins using]
To Artifact [c4dd78fccc]:
- File src/OFTaggedPointerColor.m — part of check-in [36310f6263] at 2023-08-09 09:08:58 on branch trunk — Add OF_SINGLETON_METHODS (user: js, size: 1345) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
46 47 48 49 50 51 52 | 46 47 48 49 50 51 52 53 54 55 | - - - - - + - - - - - - - - - - - - - | *green = (float)((value >> 8) & 0xFF) / 255; *blue = (float)(value & 0xFF) / 255; if (alpha != NULL) *alpha = 1; } |