[sfnt] Get colors from `CPAL' table in right order (#54015).

* src/sfnt/ttcolr.c (tt_face_find_color): Fix it.
This commit is contained in:
Werner Lemberg 2018-05-31 00:34:38 +02:00
parent db7c406084
commit 0589f6e6ee
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2018-05-31 Werner Lemberg <wl@gnu.org>
[sfnt] Get colors from `CPAL' table in right order (#54015).
* src/sfnt/ttcolr.c (tt_face_find_color): Fix it.
2018-05-30 Werner Lemberg <wl@gnu.org>
ftcolor.h: Improve API design, fix typos (#54011, #54014).

View File

@ -384,9 +384,9 @@
p = cpal->colors + color_offset + COLOR_SIZE * color_index;
*red = FT_NEXT_BYTE( p );
*green = FT_NEXT_BYTE( p );
*blue = FT_NEXT_BYTE( p );
*green = FT_NEXT_BYTE( p );
*red = FT_NEXT_BYTE( p );
*alpha = FT_NEXT_BYTE( p );
return 1;