summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2018-06-12 06:07:40 +0200
committerWerner Lemberg <wl@gnu.org>2018-06-13 06:11:28 +0200
commit22d1be3f2c40bd85ef825efc3ee524d40d842589 (patch)
treea50500a2751111620a3ed89157b454981b706051
parent45145d348fd77196d6ae92a2e8f15f671725094e (diff)
downloadfreetype2-22d1be3f2c40bd85ef825efc3ee524d40d842589.tar.gz
Finish CPAL/COLR support (4/4).
* src/sfnt/ttcolr.c (tt_face_find_color): Removed. (tt_face_colr_blend_layer): Use `face->palette' instead of calling `tt_face_find_color'. Use and set text foreground color.
-rw-r--r--ChangeLog9
-rw-r--r--src/sfnt/ttcolr.c77
2 files changed, 44 insertions, 42 deletions
diff --git a/ChangeLog b/ChangeLog
index c12b068f2..d054628ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
2018-06-12 Werner Lemberg <wl@gnu.org>
+ Finish CPAL/COLR support (4/4).
+
+ * src/sfnt/ttcolr.c (tt_face_find_color): Removed.
+ (tt_face_colr_blend_layer): Use `face->palette' instead of calling
+ `tt_face_find_color'.
+ Use and set text foreground color.
+
+2018-06-12 Werner Lemberg <wl@gnu.org>
+
Finish CPAL/COLR support (3/4).
* src/base/ftcolor.c: Include FT_INTERNAL_SFNT_H.
diff --git a/src/sfnt/ttcolr.c b/src/sfnt/ttcolr.c
index 9783b7072..5efdc1038 100644
--- a/src/sfnt/ttcolr.c
+++ b/src/sfnt/ttcolr.c
@@ -438,40 +438,6 @@
}
- static FT_Bool
- tt_face_find_color( TT_Face face,
- FT_UInt color_index,
- FT_Byte* blue,
- FT_Byte* green,
- FT_Byte* red,
- FT_Byte* alpha )
- {
- ColrCpal* colr_and_cpal = (ColrCpal *)face->colr_and_cpal;
- Cpal* cpal = &colr_and_cpal->cpal;
-
- FT_Int palette_index = 0;
- FT_Byte* p;
- FT_Int color_offset;
-
-
- if ( color_index >= face->palette_data.num_palette_entries )
- return 0;
-
- p = cpal->color_indices + palette_index * (int)sizeof ( FT_UShort );
-
- color_offset = FT_NEXT_USHORT( p );
-
- p = cpal->colors + color_offset + COLOR_SIZE * color_index;
-
- *blue = FT_NEXT_BYTE( p );
- *green = FT_NEXT_BYTE( p );
- *red = FT_NEXT_BYTE( p );
- *alpha = FT_NEXT_BYTE( p );
-
- return 1;
- }
-
-
FT_LOCAL_DEF( FT_Error )
tt_face_palette_set( TT_Face face,
FT_UInt palette_index )
@@ -607,16 +573,43 @@
}
}
- /* Default assignments to pacify compiler. */
- r = g = b = 0;
- alpha = 255;
-
- if ( color_index != 0xFFFF )
- tt_face_find_color( face, color_index, &b, &g, &r, &alpha );
+ if ( color_index == 0xFFFF )
+ {
+ if ( face->have_foreground_color )
+ {
+ b = face->foreground_color.blue;
+ g = face->foreground_color.green;
+ r = face->foreground_color.red;
+ alpha = face->foreground_color.alpha;
+ }
+ else
+ {
+ if ( face->palette_data.palette_types &&
+ ( face->palette_data.palette_types[face->palette_index] &
+ FT_PALETTE_USABLE_WITH_DARK_BACKGROUND ) )
+ {
+ /* white opaque */
+ b = 0xFF;
+ g = 0xFF;
+ r = 0xFF;
+ alpha = 0xFF;
+ }
+ else
+ {
+ /* black opaque */
+ b = 0x00;
+ g = 0x00;
+ r = 0x00;
+ alpha = 0xFF;
+ }
+ }
+ }
else
{
- /* TODO. foreground color from argument? */
- /* Add public FT_Render_Glyph_Color() with color value? */
+ b = face->palette[color_index].blue;
+ g = face->palette[color_index].green;
+ r = face->palette[color_index].red;
+ alpha = face->palette[color_index].alpha;
}
/* XXX Convert if srcSlot.bitmap is not grey? */