Changeset 28 for trunk/Packages/FastGraphics
- Timestamp:
- Dec 22, 2016, 6:01:41 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/FastGraphics/ColorFormats/UColorRGB8.pas
r27 r28 92 92 function TPixmapRGB8.RGB8ToColor(Value: TColorRGB8): TColor; 93 93 begin 94 Result := (Value. B shl 16) or (Value.G shl 8) or (Value.Rshl 0);94 Result := (Value.R shl 16) or (Value.G shl 8) or (Value.B shl 0); 95 95 end; 96 96
Note:
See TracChangeset
for help on using the changeset viewer.