Fix color modulation of the grayscale glyphs in font with mixed color / grayscale data.

This commit is contained in:
bruvzg 2022-08-22 20:39:18 +03:00
parent cdced052f0
commit 4d0c0f3ffa
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38

View file

@ -523,7 +523,7 @@ float DynamicFontAtSize::draw_char(RID p_canvas_item, const Point2 &p_pos, CharT
cpos.y -= font->get_ascent();
cpos.y += ch->v_align;
Color modulate = p_modulate;
if (FT_HAS_COLOR(font->face)) {
if (font->textures[ch->texture_idx].texture->get_format() == Image::FORMAT_RGBA8) {
modulate.r = modulate.g = modulate.b = 1.0;
}
RID texture = font->textures[ch->texture_idx].texture->get_rid();